@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.main__contenedor {
  height: 80vh;
}
@media (min-width: 1024px) {
  .main__contenedor {
    display: flex;
    justify-content: space-between;
  }
}

.header__contenedor {
  margin: 20px 25px 40px 20px;
}

.textos__contenedor {
  margin: 5px;
  width: 98%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.textos__text-area {
  color: #0A3871;
  width: 100%;
  max-width: 98vw;
  min-width: 100%;
  min-height: 150px;
  max-height: 200px;
  padding: 10px;
  border: none;
  font-size: 1.2em;
  text-transform: lowercase;
}
.textos__text-area::-moz-placeholder {
  color: #0A3871;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.5em;
}
.textos__text-area:-ms-input-placeholder {
  color: #0A3871;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.5em;
}
.textos__text-area::placeholder {
  color: #0A3871;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.5em;
}
.textos__informacion {
  width: 98%;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #495057;
  font-size: 0.7em;
  letter-spacing: 1.2px;
  margin-top: 5px;
}
.textos__botones {
  width: 98%;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.textos__boton {
  background: #fff;
  color: #0A3871;
  width: 280px;
  height: 50px;
  border: 1px solid #0A3871;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s linear;
}
.textos__boton:hover {
  background: #0A3871;
  color: #fff;
}
.textos__boton:first-child {
  background: #0A3871;
  color: #fff;
}
.textos__boton:first-child:hover {
  background: #fff;
  color: #0A3871;
}
@media (min-width: 768px) {
  .textos__contenedor {
    margin: 0 20px;
    height: 100%;
    justify-content: start;
  }
  .textos__text-area {
    width: 50vw;
    height: 580px;
    min-width: 770px;
    max-width: 770px;
    min-height: 520px;
    max-height: 580px;
  }
  .textos__botones {
    flex-direction: row;
    gap: 20px;
  }
}

.encriptador__contenedor {
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: 0.3s linear;
}
.encriptador__contenedor:hover {
  box-shadow: -2px 7px 13px -3px rgba(0, 0, 0, 0.75);
}
.encriptador__textos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  text-align: center;
  border-radius: 5px;
  padding: 20px;
}
.encriptador__imagen {
  display: none;
}
.encriptador__titulo {
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
.encriptador__mensaje-error {
  font-size: 0.75em;
  font-weight: 400;
}
.encriptador__mensaje-encriptado {
  text-transform: lowercase;
  color: #0A3871;
  font-weight: 700;
  letter-spacing: 1.3px;
  word-wrap: break-word;
  line-height: 25px;
  display: none;
}
.encriptador__boton {
  display: none;
  margin-top: 25px;
}
@media (min-width: 1024px) {
  .encriptador__contenedor {
    width: 35%;
    margin-right: 10px;
  }
  .encriptador__textos {
    height: 100%;
    width: 100%;
  }
  .encriptador__imagen {
    display: block;
    margin-bottom: 25px;
  }
  .encriptador__mensaje-encriptado {
    height: 535px;
    width: 300px;
    padding: 10px;
  }
}/*# sourceMappingURL=style.css.map */