/* ======================================================
   PASSWORD RESET REQUEST – SISCORPIO
====================================================== */

.sc-password-container {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* LOGO */
.sc-password-logo {
    margin-bottom: 12px;
    text-align: center;
}

.sc-password-logo img {
    width: 110px;
    height: auto;
}

/* TÍTULO */
.sc-password-container h2 {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    text-align: center;
}

/* FORM */
#sc-password-form {
    width: 100%;
    max-width: 360px;
    background: #ffffff;
    border-radius: 14px;
    padding: 26px 22px 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* CAMPO */
.sc-password-field {
    margin-bottom: 16px;
}

.sc-password-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.sc-password-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-password-submit {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* LINKS */
.sc-password-links {
    margin-top: 14px;
    text-align: center;
}

.sc-password-links a {
    font-size: 13.5px;
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}

/* MENSAJES */
#sc-password-message {
    margin-top: 14px;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 480px) {
    #sc-password-form {
        max-width: 90%;
        padding: 24px 18px 26px;
    }

    .sc-password-logo img {
        width: 90px;
    }

    .sc-password-container h2 {
        font-size: 18px;
    }
}
