
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  height: 100%;
}
body {
  height: 100%;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: #1d2440;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

h2, h3, h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  background-color: #fdbf5c;
  color: white;
  padding: 2px 20px;
  border-radius: 0px 20px 20px 0px;
}

h1 {
  margin: 0;
  font-weight: 900;
}

h6 {
  margin: 0;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 20px;
}
.bodie {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}

.container.correcion {
  display: flex;
  flex-direction: column;
}

.container.correcion > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.container.correcion > div section {
  width: 50%;
}

#contenedor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#contenedorSistema {
  display: flex;
  align-items: stretch;
  background-color: lightgray;
  border-radius: 20px;
}

@media (max-width: 1000px){
  #contenedorSistema {
    flex-direction: column;
  }
}
  

#recepcioDeDatos{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  border-radius: 20px 0px 0px 20px;
  padding: 30px;
  height: 100%;
}

#comandosIniciales, #datosMeteorologicos {
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.subcajas {
  width: 100%;
  min-height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  padding: 0px 10px 10px 0px;  
}

.subcajas label {
  padding: 5px 0px;
  color:#283670;
  font-weight: 800;
  font-size: 18px;
}

input {
  border: none;
  background: none;
  outline: none;
  /* Otros estilos que quieras modificar */
}

.subcajas input {
  font-family: 'Montserrat', sans-serif;
  color:#283670;
  font-weight: 600;
  font-size: 18px;
}

.subcajas span {
  border-bottom: solid 2px #999;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

input#btnAlcance {
  position: relative;
  background-color: #283670;
  padding: 10px 0px;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
input#btnCorrec {
  position: relative;
  background-color: #283670;
  margin-top: 10px;
  padding: 10px 0px;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

input#btnAlcance:hover {
  background-color: #ebc000;
}

input#btnCorrec:hover {
  background-color: #ebc000;
}

.comandos {
  width: 100%;
  min-height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comandos label {
  color:#283670;
  font-weight: 400;
  font-size: 16px;
}

.comandos input {
  font-family: 'Montserrat', sans-serif;
  color:#d43a00;
  font-weight: 300;
  font-size: 14px;
}
.comandos span {
  border-bottom: solid 2px #999;
  width: 100%;
  display: flex;
  justify-content: space-between;
}


.color1 { color:#fdbf5c; };
.color2 { color:#f69a0b; };
.color3 { color:#d43a00; };
.color4 { color:#9b0800; };
.color5 { color:#1d2440; };
.color5 { color:#283670; };
