/* fallback-forms.css */
.fallback-form-container {
    max-width: 28rem;
    margin: 3rem auto;
    padding: 0 1rem;
}

.fallback-form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
}

.fallback-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.fallback-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fallback-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fallback-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.fallback-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.fallback-input:focus {
    outline: none;
    border-color: #7d2ae8;
    box-shadow: 0 0 0 2px rgba(125, 42, 232, 0.2);
}

.fallback-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fallback-checkbox input {
    width: 1rem;
    height: 1rem;
}

.fallback-checkbox label {
    font-size: 0.875rem;
    color: #4b5563;
}

.fallback-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.fallback-button {
    background: linear-gradient(135deg, #7d2ae8, #db2777);
    color: white;
    font-weight: 600;
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.fallback-button:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.fallback-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.fallback-link a {
    color: #7d2ae8;
    text-decoration: none;
    font-weight: 500;
}

.fallback-link a:hover {
    text-decoration: underline;
}

.fallback-alert {
    background-color: #fee2e2;
    color: #dc2626;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.fallback-success {
    background-color: #d1fae5;
    color: #059669;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .fallback-form-card {
        padding: 1.5rem;
    }
}
