/* Centrado del contenedor */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* Centro horizontal */
    background-color: #fdfdfd;
    font-family: Arial, sans-serif;
}

/* ELIMINAR OJO NATIVO DE EDGE/CHROME */
input::-ms-reveal, input::-ms-clear { display: none !important; }
input::-webkit-contacts-auto-fill-button, 
input::-webkit-credentials-auto-fill-button { visibility: hidden; position: absolute; right: 0; }

.page-container {
    width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-blue {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 30px;
}

.header-blue img { max-width: 900px; width: 95%; }

.main-title {
    color: #0077c8;
    margin: 20px 0 40px 0;
    font-size: 22px;
    font-weight: bold;
}

/* Layout de Tarjetas */
.cards-layout {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 40px;
    width: 420px;
    min-height: 440px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.instruction {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-box {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blue-link { color: #0077c8; text-decoration: none; font-weight: bold; }

/* Grid de Inputs Lado a Lado */
.login-inputs-grid {
    display: flex;
    gap: 15px;
    margin: 10px 0 30px 0;
}

.field-container {
    flex: 1;
    text-align: left;
}

.field-container label {
    display: block;
    color: #0077c8;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 6px;
}

.input-wrapper {
    position: relative;
    border: 1px solid #aaa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: #fff;
}

.input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
}

.eye-icon {
    cursor: pointer;
    margin-right: 8px;
    font-size: 16px;
    color: #888;
}

/* Botones */
.btn-orange {
    background-color: #ff8000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 35px;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    align-self: center;
}

.btn-ingresar { margin-top: 10px; }

/* Links Inferiores */
.links-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}

.links-footer-grid a {
    color: #0077c8;
    text-decoration: none;
    font-size: 12px;
}

/* Footer */
.footer-area {
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra todo el contenido del footer */
    text-align: center;
    color: #666;
    font-size: 11px;
}

.ssl-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 25px;
}
.ssl-link {
    color: #000000;
    text-decoration: none;
    font: bold 7px verdana, sans-serif;
    letter-spacing: .5px;
    margin-top: 5px;
}

#DigiCertClickID_BSA9pFLT {
    display: inline-block;
    margin: 0 auto;
}

.copyright-bar {
    border-top: 1px solid #eee;
    padding: 20px;
    margin-top: 20px;
    font-size: 10px;
}