/* Authentication Pages Styles */
.auth-section {
    min-height: 100vh;
    padding: 120px 20px 80px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    padding: 3rem;
    border-radius: 24px;
    background: rgba(85, 255, 81, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(85, 255, 81, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.auth-title {
    font-family: 'Parfumerie Script', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #55ff51;
    margin: 0 0 0.5rem 0;
    text-align: center;
    text-shadow: 0 0 14px rgba(85, 255, 81, 0.3);
}

.auth-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0 0 2rem 0;
}

.google-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.google-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.google-btn:active {
    transform: translateY(0);
}

.google-btn svg {
    flex-shrink: 0;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.auth-divider span {
    padding: 0 1rem;
}

.auth-form {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(85, 255, 81, 0.05);
    border: 1px solid rgba(85, 255, 81, 0.3);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(85, 255, 81, 0.6);
    background: rgba(85, 255, 81, 0.08);
    box-shadow: 0 0 20px rgba(85, 255, 81, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #55ff51;
    cursor: pointer;
}

.forgot-password {
    color: #55ff51;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.forgot-password:hover {
    opacity: 0.8;
}

.checkbox-label a {
    color: #55ff51;
    text-decoration: none;
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(85, 255, 81, 0.1);
    border: 1px solid rgba(85, 255, 81, 0.4);
    color: #55ff51;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.auth-btn:hover {
    background: rgba(85, 255, 81, 0.2);
    border-color: rgba(85, 255, 81, 0.6);
    box-shadow: 0 0 20px rgba(85, 255, 81, 0.2);
}

.auth-footer {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.auth-footer a {
    color: #55ff51;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.auth-footer a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .auth-card {
        padding: 2rem;
    }
}

