.body{
    font-family: Arial, Helvetica, sans-serif;
}

.login-page-body {
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    overflow: hidden;
}

.login-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: relative;
}

/* Mitad Izquierda: Foto de fondo corporativa */
.login-bg img{   
    margin-right: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    object-fit: cover; 
    width: 100%; 
    height: 100%;
}

/* Capa azulada traslúcida sobre la foto para darle el tono del mockup */
.login-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(2, 62, 138, 0.15);
    backdrop-filter: blur(2px);
}

/* Mitad Derecha: Zona de Contención de la Tarjeta */
.login-container {
    width: 460px;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 10;
    box-sizing: border-box;
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 2px;
}
.logo-main {
    font-size: 26px;
    font-weight: bold;
    color: #f2f2f2;
    position: relative;
}
.logo-star {
    font-size: 10px;
    color: #f2f2f2;
    position: absolute;
    top: -2px;
    right: -8px;
}
.logo-sub {
    font-size: 11px;
    color: #0d629b;
    font-weight: bold;
    margin-left: 8px;
    margin-top: 12px;
}
.logo-divider {
    font-size: 24px;
    color: #0d629b;
    margin: 0 10px;
    font-weight: 300;
}
.logo-title {
    font-size: 22px;
    font-weight: bold;
    color: #0081c9;
    letter-spacing: 1px;
}

.access-text {
    font-size: 13px;
    font-weight: bold;
    color: #333333;
    margin: 5px 0 15px 0;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Badges de Iconos Superiores */
.logo-colmedis {
    height: 100px;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 10px;
}
.badge-icon {
    font-size: 28px;
    position: relative;
}
.icon-lock-shield { color: #5dade2; }
.icon-doc-search { color: #7f8c8d; }

/* Banner Azul Informativo */
.blue-banner {
    background-color: #051f53;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(26, 115, 232, 0.3);
}

.system-desc {
    font-size: 11px;
    color: #555555;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
}

.input-field-group {
    display: flex;
    align-items: center;
    background-color: #1c4691; /* Tono de fondo azul del input */
    border-radius: 15px;       /* Redondeado ovalado del diseño */
    margin-bottom: 12px;
    width: 340px;
    height: 42px;
    overflow: hidden;
}

.field-icon {
    color: #ffffff;
    padding: 0 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.input-field-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    padding: 10px 15px 10px 0;
    outline: none;
}

/* Estilo para el texto placeholder interno en blanco */
.input-field-group input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

/* Botón Ingresar */
.btn-submit-portal {
    background-color: #e9a53b;
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    font-size: 13px;
    width: 340px;
    height: 42px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s ease;
}
.btn-submit-portal:hover {
    background-color: #f8d685;
}

.error-msg {
    color: #d93025;
    font-size: 11px;
    margin-top: 8px;
    text-align: center;
    display: none;
}

.pg-web a {
    width: 80px;
    height: 150px;
}

.logout-btn {
    background: transparent;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 20px;
}

.logout-btn:hover {
    background: #ff4d4d;
    color: white;
}

/* Soporte y Footer */
.forgot-password-text {
    font-size: 11px;
    color: #333333;
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
}
.support-email {
    color: #1a73e8;
}

.cumple{
    text-align: justify;
    padding: 20px; 
    background: #1e1e1e; 
    border-radius: 8px; 
    border: 1px solid #333;
}

.card-footer-icons {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 15px;
    color: #333333;
}

.footer-icon-item {
    font-size: 22px;
}

.login-footer-credits {
    font-size: 9px;
    color: #444444;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
    font-weight: bold;
}

