/* basic form page styling */
.form-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 140px);
    background: linear-gradient(180deg, #FFD93B 0%, #F6A57F 40%, #B54BE2 100%);
    padding: 120px 0;
}

.auth-form {
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 20px;
    width: 320px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form h2 {
    text-align: center;
    color: #282828;
}

.auth-form label {
    font-weight: 600;
}

.auth-form input,
.auth-form select,
.auth-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
}

.auth-form button {
    background: linear-gradient(135deg,#FFD93B,#B54BE2);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.auth-form button:hover {
    transform: scale(1.05);
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 6px;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 6px;
}
