/* --- Globales --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body, html { height: 100%; width: 100%; overflow: hidden; }

.main-container { display: flex; height: 100vh; width: 100vw; }

/* Sección Izquierda */
.left-section {
    flex: 1.8;
    background-color: #000521;
    background-image: url('Imagenes/patron_geumetrico.png');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 70px;
}

.center-wrapper { width: 100%; max-width: 680px; display: flex; flex-direction: column; align-items: center; }

.login-card {
    background: white;
    width: 90%;
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    text-align: center;
}

.logo-card-container img { width: 180px; margin-bottom: 20px; }
.login-title { font-size: 32px; color: #4a4a4a; font-weight: 300; margin-bottom: 35px; }


/* Empuja la sección de botones hacia abajo con margen usando viewport */
.cta {
  margin-top: 10vh;  /* Ajusta 8–20vh según te guste */
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Botones de Selección (Ovalados) */
.login-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 15px;
    border: 1px solid #4a4a4a;
    background: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* --- FORMULARIO CLÁSICO: CORRECCIÓN SENIOR (image_08d73d.png) --- */
.classic-form-container {
    display: inline-block;
    margin: 0 auto;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.form-row label {
    font-size: 15px;
    color: #333;
    width: 140px; /* Ancho fijo para alinear el texto a la derecha */
    text-align: right;
    margin-right: 10px;
}

.form-row input {
    width: 220px;
    padding: 2px 4px;
    border: 1px solid #999;
    font-size: 14px;
    border-radius: 0px; /* Rectangulares según la imagen */
}

.form-actions {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.btn-classic {
    padding: 3px 12px;
    background-color: #f0f0f0;
    border: 1px solid #ababab;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    min-width: 75px;
    border-radius: 2px;
}

.btn-classic:hover { background-color: #e5e5e5; }

/* --- SECCIÓN SSO --- */
.peibo-logo-sso { height: 26px; margin-bottom: 15px; }
.sso-wrapper { text-align: left; }
.sso-input-line { width: 100%; border: none; border-bottom: 1px solid #666; padding: 8px 0; margin-bottom: 15px; outline: none; }
.sso-btn-blue { background: #0067b8; color: white; border: none; padding: 7px 20px; cursor: pointer; }
.sso-btn-gray { background: #ccc; border: none; padding: 7px 20px; cursor: pointer; }

/* --- FOOTER Y SECCIÓN DERECHA --- */
.footer-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: white;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
}

.right-section {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.banpay-header img { width: 130px; margin-bottom: 40px; }
.status-card-info h2 { font-size: 26px; margin-bottom: 20px; }
.status-card-info p { font-size: 15px; color: #555; line-height: 1.5; }

.sso-options-box {
    background: white; margin-top: 20px; padding: 15px 25px;
    display: flex; align-items: center; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
