/* Festday - Professional Authentication Styles */

.auth-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-light);
    padding: 60px 20px;
}

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

.auth-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.auth-header {
    padding: 40px 40px 10px;
    text-align: center;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 14px;
    color: #6c757d;
}

.auth-body {
    padding: 30px 40px 40px;
}

.auth-body h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    display: block;
}

.form-group input {
    /* Styles inherited from main.css */
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1);
}

.btn-google-wrapper {
    margin-bottom: 24px;
}

.auth-divider {
    margin: 24px 0;
    position: relative;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.auth-divider span {
    position: relative;
    background: #fff;
    padding: 0 12px;
    font-size: 12px;
    color: #adb5bd;
    font-weight: 600;
}

.auth-links {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.auth-back-home {
    position: absolute;
    top: 24px;
    left: 24px;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.btn-back:hover {
    color: var(--primary-color);
}

.auth-footer {
    margin-top: 32px;
    text-align: center;
    color: #adb5bd;
    font-size: 13px;
}

@media (max-width: 480px) {
    .auth-card {
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .auth-page {
        background: #fff;
        padding: 40px 20px;
    }

    .auth-body {
        padding: 20px 0;
    }
}