/* Authentication Pages */
.auth-form {
    max-width: 500px;
    margin: 30px auto;
}

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

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0f172a;
}

.form-field input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-field input:focus {
    outline: none;
    border-color: #0f172a;
}

.field-error {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.field-help {
    display: block;
    color: #64748b;
    font-size: 12px;
    margin-top: 6px;
}

.password-requirements {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #0f172a;
}

.password-requirements p {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #0f172a;
    font-size: 14px;
}

.password-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.password-requirements li {
    color: #475569;
    font-size: 13px;
    margin-bottom: 6px;
}

.password-requirements li:last-child {
    margin-bottom: 0;
}

.auth-link {
    text-align: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.auth-link p {
    color: #64748b;
    font-size: 14px;
}

.auth-link a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: underline;
}

.auth-link a:hover {
    color: #475569;
}

/* Guest Buttons */
.guest-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.guest-button {
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.guest-button.primary {
    background: #0f172a;
    color: white;
}

.guest-button.primary:hover {
    background: #1e293b;
    text-decoration: none;
}

.guest-button.secondary {
    background: white;
    color: #0f172a;
    border: 2px solid #0f172a;
}

.guest-button.secondary:hover {
    background: #f8f9fa;
    text-decoration: none;
}
