.elementor-970 .elementor-element.elementor-element-9cbd7b2{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-e697824 *//* ============================
   CONTENEDOR GENERAL (Recuperar contraseña)
============================ */
.th-login-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f3f4f6;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ============================
   TARJETA
============================ */
.th-login-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    animation: th-fadeIn 0.25s ease-out;
}

@keyframes th-fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   CABECERA
============================ */
.th-login-header {
    text-align: center;
    margin-bottom: 20px;
}

.th-login-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5B21B6;
    background: #f5f3ff;
    margin-bottom: 10px;
}

.th-login-header h1 {
    font-size: 1.6rem;
    margin: 0;
    color: #111827;
}

.th-login-header p {
    margin: 4px 0 0;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.45;
}

/* ============================
   FORMULARIO
============================ */
.th-login-form {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.th-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.th-field label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
}

.th-field input[type="email"],
.th-field input[type="text"] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    font-size: 0.95rem;
    background: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.th-field input:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.25);
    background: #ffffff;
}

/* ============================
   MENSAJES (error / éxito)
============================ */
.th-login-errors {
    margin-top: 10px;
    margin-bottom: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.9rem;
    border: 1px solid #fecaca;
}

.th-login-errors p {
    margin: 0 0 4px;
}

.th-login-success {
    margin-top: 10px;
    margin-bottom: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #ecfdf5;
    color: #15803d;
    font-size: 0.9rem;
    border: 1px solid #bbf7d0;
}

.th-login-success p {
    margin: 0;
}

/* ============================
   BOTONES
============================ */
.th-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.th-btn-full {
    width: 100%;
}

.th-btn-primary {
    background: linear-gradient(135deg, #5B21B6, #8B5CF6);
    color: white;
    box-shadow: 0 12px 30px rgba(88, 28, 135, 0.35);
}

.th-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(88, 28, 135, 0.5);
}

.th-btn-ghost {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.th-btn-ghost:hover {
    background: #f3f4f6;
}

/* ============================
   FOOTER
============================ */
.th-login-footer {
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 14px;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
}

.th-login-footer p {
    margin-bottom: 10px;
}

.th-login-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 480px) {
    .th-login-card {
        padding: 26px 20px;
    }

    .th-login-header h1 {
        font-size: 1.4rem;
    }
}/* End custom CSS */