/* Kronia Login CSS */

/* Operación camuflaje: Hacemos invisible la caja del tema */
body.page .entry-content,
body.page .content-container,
body.page article,
.site-main,
.content-inner,
#inner-content,
.entry-content-wrap {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Centrado absoluto en la pantalla */
.kronia-login-wrapper {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Caja del formulario */
.kronia-login-form {
    max-width: 350px;
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.kronia-login-field {
    margin-bottom: 14px;
}

.kronia-login-label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #003872;
    font-weight: 700;
}

.kronia-login-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: all 0.2s;
    background: #ffffff;
}

.kronia-login-input:focus {
    outline: none;
    border-color: #003872;
    box-shadow: 0 0 0 3px rgba(0, 56, 114, 0.1);
}

.kronia-login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin: 10px 0 18px;
    cursor: pointer;
    font-weight: 500;
}

.kronia-login-remember input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #003872;
}

.kronia-login-button-wrap {
    text-align: center;
}

.kronia-login-button {
    background: #003872;
    color: #ffffff;
    border: none;
    border-radius: 99px;
    padding: 10px 0;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 56, 114, 0.2);
    transition: background 0.2s, transform 0.1s;
}

.kronia-login-button:hover {
    background: #002b5c;
}

.kronia-login-button:active {
    transform: scale(0.98);
}

.kronia-login-error {
    margin-bottom: 15px;
    padding: 10px 12px;
    font-size: 13px;
    color: #b91c1c;
    background: #fef2f2;
    border-radius: 8px;
    border: 1px solid #fecaca;
    font-weight: 500;
}