.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
}

.auth-container {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    max-width: 440px;
    width: 100%;
    padding: 48px;
}

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

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.auth-logo-icon {
    font-size: 32px;
}

.auth-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    color: #666;
}

.auth-subtitle a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

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

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-error.show {
    display: block;
}

.btn-submit {
    background: #2563eb;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: #1d4ed8;
}

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

.auth-divider {
    text-align: center;
    margin: 24px 0;
    color: #999;
    font-size: 14px;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.back-link {
    text-align: center;
    margin-top: 24px;
}

.back-link a {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

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

.forgot-password-wrapper {
    text-align: right;
    margin-top: -8px;
}

.forgot-password-link {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
}

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

.guest-option {
    text-align: center;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    margin-top: 16px;
    border: 1px solid #e5e7eb;
}

.guest-option p {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #666;
}

.btn-guest {
    background: white;
    color: #2563eb;
    padding: 10px 20px;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-guest:hover {
    background: #2563eb;
    color: white;
}
