

h1{
    color:blue;
    text-align: center;
}


.navbar{
    padding: 0px;
    margin: 0px;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-image: url(nature.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}


#direction1{
    font-size: large;
    font-family: cursive;
}

.goto{
    margin-right: 200px;
    text-decoration: none;
    color:white;
    font-size: 18px;
    transition: 0.3s;

}

.goto:hover{
    color: cyan;
    text-shadow: 0 0 5px cyan,
                 0 0 10px cyan,
                 0 0 20px cyan;

}

.search{

    background-color:aliceblue;
    color:#2a6163
}


body{
    margin: 0;
    background-color: #0089ff;
    background-image: url("background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;   
}

.login-panel {
    width: 300px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid cyan;
    border-radius: 12px;
    box-shadow: 0 0 15px cyan;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-panel{
    width: 360px;
    background: rgba(10, 15, 30, 0.75);
    border: 1px solid #00ffff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4),
                0 0 50px rgba(0, 255, 255, 0.2);


}

.login-panel h2{
    font-size: 28px;
    margin-bottom: 8px;
    color: #00ffff;

}

.sub-text{
    color: #aaa;
    margin-bottom: 25px;
    font-size: 14px;




}






.input-group{
    position: relative;
    margin-bottom: 20px;

}

.input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #00ffff;
    font-size: 16px;
    z-index: 2;
}   

.input-group input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid #00ffff;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
    box-sizing: border-box;

}

.input-group input::placeholder{
    color: #aaa;

}

.input-group input:focus{
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);

}

.input-group input:focus::placeholder{

    color: #fff;

}

.input-group input::selection{
    background: rgba(0, 255, 255, 0.3);


    
}




.login-btn{
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #00ffff, #007bff);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    

}

.login-btn:hover{
    background: linear-gradient(90deg, #007bff);
    box-shadow:  0 0 25px rgba(0, 255, 255, 0.7);
    transform: translateY(-2px);
    

}

.login-btn:active{
    transform: translateY(0);


}









.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 25px;
    font-size: 14px;


}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    cursor: pointer;


}

.forgot{
    color: #000fff;
    text-decoration: none;


}

.forgot:hover{
    text-decoration: underline;


}

.divider {
    display: flex;
    align-items: center;
    width: 100%;
    color: #ffffff;
    margin: 20px 0;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ffffff;
}

.divider span {
    padding: 0 15px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;


}

.social-btn{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid #00ffff;
    color: #fff;
    border-radius: 10px;
    transition: 0.3s ease;


}

.social-btn:hover{
    background: rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);


}





.container{
    display: flex;
    justify-content: center;
    align-items: center;
    

}

.input-group svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 16px;
    z-index: 10;
    pointer-events: none;

}

@media (max-width: 600px) {

    .login-panel {
        width: calc(100% - 30px);
        padding: 30px 20px;
        box-sizing: border-box;
    }

}