* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Evitar el desplazamiento */
}

/* Header */
.header {
    display: flex;
    align-items: center;
    height: 145px;
    background-color: #234664;
}

.logo-container img {
    height: 80%;
    width: 100%;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer a {
    color: #4a90e2;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Container para las secciones A y B */
.container {
    display: flex;
    height: 745px; /* Altura fija para que no cambie */
    width: 1000px; /* Ancho fijo */
  
    padding-top: 20px;
}

/* Sección A */
.section-a {
    flex: 55%;
    background-color: white;
    padding: 20px;

}

/* Sección B */
.section-b {
    padding-top: 70px;
    margin-left: 300px;
    flex: 45%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen e inputs */
.fondoizq {
    width: 105%;
    height: 80%;
    background-color: #9E9E9E;
}

.imgizq {
    width: 80%; 
    height: auto;
    padding: 2%;
}

.contenedorInput {
    text-align: center;
    width: 100%;
    height: 100%    ;
}
.imglogo{
    width: 100%;
    height: auto;
}

.inputusuario {
    border-radius: 10px;
    background-color: #E6E6E6;
    width: 100%;
    height: 70px;
    font-size: 20px;
    border: none;
    padding-left: 30px;
    color: #9E9E9E;
  
}

.btn-verde {
    width: 70%;
    height: 10%;
    background-color: #388E3C; /* Verde */
    color: #E6E6E6; /* Texto en blanco */
    border: none;
    padding: 10px 20px;
    font-size: 32px;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Efecto de transición */
}

html, body {
    width: 100vw;
    height: 100vh;
}
