/* Reset de campos para evitar fundos escuros */
.input,
.input[type="text"],
.input[type="email"],
.input[type="tel"],
.input[type="number"],
.input[type="password"],
textarea.input,
select.input {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff !important;
    color: #111827;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.625rem 0.75rem;
    width: 100%;
    outline: none;
}

.input:focus,
textarea.input:focus,
select.input:focus {
    border-color: #f43f5e;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, .15);
}

.label {
    display: block;
    font-size: .875rem;
    color: #374151;
    margin-bottom: .25rem;
}

.btn-primary {
    background: #e11d48;
    color: #fff;
    border-radius: .75rem;
    padding: .625rem .9rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-primary:hover {
    filter: brightness(.95);
}

.btn-secondary {
    background: #fff;
    color: #111827;
    border-radius: .75rem;
    padding: .625rem .9rem;
    font-weight: 600;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #fafafa;
}

.card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
}