/* Authentication Pages Styles */

.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: 
        radial-gradient(circle at top left, rgba(78, 205, 196, 0.13), transparent 60%),
        radial-gradient(circle at bottom right, rgba(255, 107, 107, 0.13), transparent 55%),
        #050811;
}

.auth-card {
    background: #1e1e1e;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 20% 0%, #4ecdc4, #2c5aa0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.auth-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.google-btn {
    width: 100%;
    padding: 14px 20px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    margin-bottom: 25px;
}

.google-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.google-icon {
    width: 20px;
    height: 20px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: #666;
    font-size: 0.85rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 15px;
}

.auth-form {
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #c1c1c1;
    cursor: pointer;
}

.auth-link {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-link:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #aaa;
    font-size: 0.9rem;
}

.forgot-password {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
}

.forgot-password a {
    font-size: 0.85rem;
    color: #4ecdc4;
    text-decoration: none;
}

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

.submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #4ecdc4, #2c5aa0);
    color: #050811;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Password strength indicator */
.password-strength {
    margin-top: 8px;
    height: 4px;
    background: #2d2d2d;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    transition: all 0.3s;
    border-radius: 2px;
}

.password-strength-weak {
    width: 33%;
    background: #ff6b6b;
}

.password-strength-medium {
    width: 66%;
    background: #ffc107;
}

.password-strength-strong {
    width: 100%;
    background: #4ecdc4;
}

/* Responsive */
@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }

    .auth-title {
        font-size: 1.5rem;
    }
}
