html, body {
  height: 100%;
  margin: 0;
}

.container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Absolute-Center {
  width: 100%;
  max-width: 400px;
  padding: 40px;
  border-radius: 10px; /* Para darle bordes redondeados */
}


#logo-container {
    margin: auto;
    margin-bottom: 10px;
    width: 245px;
    height: 68px;
    background-image: url('../imagenes/logointegra365.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  

.mybtn-icon{
  color:white;
  background-color:#091f51;
  border-left-color:#091f51;
  border-right-color:#091f51;
  border-top-color:#091f51;
  border-bottom-color:#091f51;
}

.mybtn-login{
  color:white;
  background-color:#091f51;
  border-left-color:#091f51;
  border-right-color:#091f51;
  border-top-color:#091f51;
  border-bottom-color:#091f51;
}


.mybtn-login[type = "submit"]:hover {
  color:#ECE9E9;  /*you can add more styles to be applied on hover*/
}

.form-group {
  margin-bottom: 20px;
}

.form-group input, 
.form-group select {
  width: 100%; /* Asegura que los inputs ocupen todo el ancho del contenedor */
  padding: 10px; /* Espacio interno para que se vean más grandes */
  font-size: 12px; /* Tamaño de fuente más legible */
  box-sizing: border-box; /* Asegura que padding y ancho no rompan el diseño */
}