/* ======================================================
   LOGIN – SISCORPIO
   RÁPIDO + UX TIPO WORDPRESS
====================================================== */

/* CONTENEDOR (SIN BLOQUEAR TODO EL DOCUMENTO) */
.sc-login-container {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* LOGO */
.sc-login-logo {
    margin-bottom: 8px;
    text-align: center;
}

.sc-login-logo img {
    width: 110px;
    height: auto;
}

/* TÍTULO */
.sc-login-title {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    text-align: center;
}

/* FORMULARIO */
#sc-login-form {
    width: 100%;
    max-width: 360px;
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 22px 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* CAMPOS */
.sc-login-field {
    margin-bottom: 12px;
}

.sc-login-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.sc-login-field input {
    width: 100%;
    padding: 11px 12px;
    border-radius: 9px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    background: #fafafa;
    touch-action: manipulation;
}

/* BOTÓN */
#sc-login-submit {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* LINKS */
.sc-login-links {
    margin-top: 12px;
    text-align: center;
}

.sc-login-links a {
    font-size: 13.5px;
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}

/* MENSAJES */
#sc-login-message {
    margin-top: 12px;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 480px) {
    #sc-login-form {
        max-width: 90%;
        padding: 22px 18px 24px;
    }

    .sc-login-logo img {
        width: 90px;
    }

    .sc-login-title {
        font-size: 18px;
    }
}
