/* CSS Document */
/* Reseteamos márgenes y padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Establecemos que el cuerpo ocupe toda la altura de la pantalla */
body, html {
    height: 100%;
}

/* Usamos Flexbox para dividir la pantalla en 3 divisiones */
.container {
    display: flex;
    flex-direction: column; /* Apilamos las divisiones verticalmente */
    height: 100vh; /* Contenedor ocupa toda la altura visible de la página */
}
/* Cada división ocupa un tercio de la altura de la pantalla */
.section {
    flex0: 1; /* Hace que cada sección ocupe el mismo espacio */
    display: flex;
    justify-content: center; /* Centra el contenido horizontalmente */
    align-items: center; /* Centra el contenido verticalmente */
    font-size: 24px; /* Tamaño de texto */
    padding: 20px;
    color: white; /* El texto será blanco para que sea legible */
}

/* Colores de fondo para cada sección */
.section:nth-child(1) {
    background-color: #f0a1a1;
    height: 5%;
}

.section:nth-child(2) {
    background-image: url('../img/logon3a.jpg'); /* Agregamos la imagen de fondo */
    background-size: cover; /* Asegura que la imagen cubra toda la sección */
    background-position1: center; /* Centra la imagen */
    color: black; /* Asegura que el texto sea visible sobre la imagen */
    height: 65%;
}

.section:nth-child(3) {
    background-color: #a1f0a1;
        height: 30%;
}

body {
  font-family: Arial, sans-serif;
  height: 90vh;
  display1: flex;
  justify-content: center;
  align-items1: center;
  background-image1: url('https://via.placeholder.com/1920x1080'); /* Aquí va tu imagen de fondo */
  background-image2: url('logon0a.jpg'); /* Aquí va tu imagen de fondo */
  background-size: cover;
  background-position: center;
  position: relative;
}
.body-container {
  font-family: Arial, sans-serif;
  height: 60%;
  width: 100%;
  display: flex;
  justify-content: right;
  align-items1: center;
  background-image1: url('logon0a.jpg'); /* Aquí va tu imagen de fondo */
  background-size: cover;
  background-position: left;
  position1: absolute;
  top: 2%y;
  padding: 0px;
  border: 0px solid;
}
.TituloApp {
  z-index: 1;
  font-family: Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
  color: white;
  font-size: 180%;
  border: 0px solid;
  height1: 2.5em;
  background-color: Skyblue; /* For browsers that do not support gradients */
  background-image: linear-gradient( #2c67f2, #62cff4);
  top: 0px;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;

  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
  
  background-image1: url('logon0a.jpg'); /* Aquí va tu imagen de fondo */
  background-size: cover;
  background-position: center;
  position: absolute;
}

.login-container {
  background-color0: rgba(255, 255, 255, 0.8); /* Fondo blanco semitransparente */
  background-color1: #f8f8ff; /* Ghost white */
  background-color: rgb(250,251,253, 0.8); /*#fafbfd;  Blanco Zinc */
  padding: 15px;
  border-radius: 8px;
  width: 50%;
  text-align: center;
}

.SoporteApp {
  z-index: 2;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-size: 120%;
  border0: 1px solid;
  padding: 0px;
  height: 50%;
  background-color: Skyblue; /* For browsers that do not support gradients */
  background-image: linear-gradient( #2c67f2, #62cff4);
  top1: 0px;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image1: url('../img/logon0a.jpg'); /* Aquí va tu imagen de fondo */
  background-size: cover;
  background-position1: center;
  position: relative;
  display1: none; 
}

h2 {
  margin-bottom: 20px;
  color: #333;
}

.input-group {
  margin-bottom: 15px;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin-top: 5px;
}

button {
  width: 100%;
  font-size: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#error-message {
  margin-top: 10px;
  color: red;
  font-size: 14px;
}

