/**
 * SuiteCRM Authenticator — Estilos de página de login
 *
 * Usa variables CSS del tema cuando están disponibles,
 * con fallbacks razonables para cualquier tema.
 */

/* ── Contenedor principal ─────────────────────────────────── */
.scrm-login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 16px;
}

/* ── Caja del formulario ──────────────────────────────────── */
.scrm-login-box {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background: var(--wp--preset--color--background, #ffffff);
    border: 1px solid var(--wp--preset--color--tertiary, #e2e8f0);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ── Logo del sitio ───────────────────────────────────────── */
.scrm-login-box .custom-logo-link {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.scrm-login-box .custom-logo {
    max-height: 80px;
    width: auto;
}

/* ── Nombre del sitio (fallback si no hay logo) ───────────── */
.scrm-login-site-name {
    text-align: center;
    margin: 0 0 24px;
    font-size: 1.4rem;
    font-family: var(--wp--preset--font-family--primary, inherit);
    color: var(--wp--preset--color--foreground, #1a202c);
}

.scrm-login-site-name a {
    color: inherit;
    text-decoration: none;
}

/* ── Título del formulario ────────────────────────────────── */
.scrm-login-title {
    text-align: center;
    margin: 0 0 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wp--preset--color--foreground, #2d3748);
    font-family: var(--wp--preset--font-family--primary, inherit);
}

/* ── Mensaje de error ─────────────────────────────────────── */
.scrm-login-error {
    background: #fff5f5;
    border: 1px solid #fc8181;
    border-left: 4px solid #e53e3e;
    color: #c53030;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ── Grupos de campo ──────────────────────────────────────── */
.scrm-field-group {
    margin-bottom: 18px;
}

.scrm-field-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--wp--preset--color--foreground, #4a5568);
}

.scrm-field-group input[type="text"],
.scrm-field-group input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--wp--preset--color--tertiary, #cbd5e0);
    border-radius: 6px;
    font-size: 1rem;
    color: var(--wp--preset--color--foreground, #2d3748);
    background: var(--wp--preset--color--background, #ffffff);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.scrm-field-group input[type="text"]:focus,
.scrm-field-group input[type="password"]:focus {
    outline: none;
    border-color: var(--wp--preset--color--primary, #4299e1);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}

/* ── Recordarme ───────────────────────────────────────────── */
.scrm-field-remember {
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: var(--wp--preset--color--foreground, #718096);
}

.scrm-field-remember label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.scrm-field-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--wp--preset--color--primary, #4299e1);
}

/* ── Botón de submit ──────────────────────────────────────── */
.scrm-login-submit {
    width: 100%;
    padding: 12px;
    background: var(--wp--preset--color--primary, #3182ce);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: var(--wp--preset--font-family--primary, inherit);
}

.scrm-login-submit:hover {
    background: var(--wp--preset--color--secondary, #2b6cb0);
    transform: translateY(-1px);
}

.scrm-login-submit:active {
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media ( max-width: 480px ) {
    .scrm-login-box {
        padding: 28px 20px;
        border: none;
        box-shadow: none;
    }
}
