/*specfics for login page*/

.login-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-header {
     text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #e94560, #0f3460);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.login-header p {
    color: #b8b8b8;
    font-size: 1.1rem;
}

 .input-icon {
     position: absolute;
     right: 20px;
     top: 45px;
     color: #a0a0a0;
 }

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #b8b8b8;
}

.remember-me input {
    cursor: pointer;
}

.forgot-password {
    color: #e94560;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.signup-link {
    text-align: center;
    margin-top: 25px;
    color: #b8b8b8;
}

.signup-link a {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #b8b8b8;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 15px;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #0f3460;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn:hover {
    border-color: #e94560;
    background: rgba(233, 69, 96, 0.1);
    transform: translateY(-3px);
}

.social-btn i {
    font-size: 1.2rem;
}

 @media (max-width: 600px) {
     .login-container {
         padding: 30px 20px;
     }

     .login-header h1 {
         font-size: 2rem;
     }

     .options {
         flex-direction: column;
         gap: 15px;
         align-items: flex-start;
     }
 }