body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.container {
    width: 100%;
    max-width: 460px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #dbe2ea;
    margin: 0 auto 14px;
}

.language-switcher__label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.language-switcher__select {
    border: none;
    background: transparent;
    color: #111827;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

.title {
    text-align: center;
    margin: 0 0 18px;
    font-size: 32px;
}

.subtitle {
    text-align: center;
    color: #6b7280;
    margin: 0 0 26px;
    font-size: 15px;
}

.card {
    background: white;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f7;
}

.row {
    margin-bottom: 18px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-weight: 500;
}

.checkbox-row input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    transform: scale(1.15);
}

.checkbox-row span {
    line-height: 1.45;
}

.checkbox-row a {
    color: #1d4ed8;
    font-weight: 700;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
}

input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #f9fafb;
    font-size: 15px;
    transition: 0.2s ease;
}

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

.actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.btn {
    padding: 13px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    text-align: center;
    flex: 1;
    font-size: 14px;
    transition: 0.2s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.btn-secondary {
    background: #e5e7eb;
    color: #111827;
}

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

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

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

.muted {
    color: #6b7280;
    text-align: center;
    margin-bottom: 0;
}

.muted + .muted {
    margin-top: 10px;
}

.muted-top {
    margin-top: 18px;
}

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

.muted a:hover {
    text-decoration: underline;
}

.reenvio-form label {
    margin-bottom: 6px;
    text-align: left;
}

.reenvio-form input {
    margin-top: 6px;
    margin-bottom: 8px;
}

.reenvio-form .btn {
    width: 100%;
}

.errorlist {
    color: #991b1b;
}

.error-box {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.success-box {
    background: #dcfce7;
    color: #166534;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.info-box {
    background: #e0f2fe;
    color: #075985;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

@media (max-width: 768px) {
    body {
        padding: 16px;
    }

    .title {
        font-size: 36px;
    }

    .subtitle,
    label,
    input,
    .muted,
    .error-box,
    .success-box,
    .info-box {
        font-size: 16px;
    }

    .card {
        padding: 22px;
    }

    .btn {
        font-size: 16px;
        min-height: 46px;
    }
}
