/* Authentication Pages Styling (Login/Register) */

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 30px;
    background-color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    margin-top: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.auth-header h1:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff5bae, #fd72cc);
}

.auth-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 20px;
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form .form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.auth-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: #ff5bae;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 91, 174, 0.1);
    background: #fff;
}

.auth-form small {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 0.85rem;
}

.auth-form .text-center {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.auth-form .text-center a {
    color: #ff5bae;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.auth-form .text-center a:hover {
    text-decoration: underline;
}

.auth-form .btn-container {
    margin-top: 30px;
}

.auth-form .btn-primary {
    background: linear-gradient(90deg, #ff5bae, #fd72cc);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 0;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.auth-form .btn-primary:hover {
    background: linear-gradient(90deg, #fd72cc, #ff5bae);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 91, 174, 0.25);
}

.social-login {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center;
}

.social-login p {
    color: #666;
    margin-bottom: 15px;
    position: relative;
}

.social-login .social-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-login .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-login .social-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.social-login .social-btn.google i {
    color: #DB4437;
}

.social-login .social-btn.facebook i {
    color: #4267B2;
}

.social-login .social-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
}

.forgot-password {
    color: #ff5bae;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

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

.alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 0;
    color: #fff;
}

.alert-danger {
    background-color: #f44336;
}

.alert-success {
    background-color: #4CAF50;
}

/* Responsive styles */
@media (max-width: 768px) {
    .auth-container {
        padding: 30px 20px;
    }
    
    .auth-header h1 {
        font-size: 2rem;
    }
    
    .auth-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-container {
        padding: 25px 15px;
        margin-top: 20px;
    }
    
    .auth-header h1 {
        font-size: 1.8rem;
    }
    
    .social-login .social-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .auth-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
} 