* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #e6e9ee;
}

main {
  padding: 0;
  margin: 0;
  width: 100%;
}

.loginContext {
  width: 100%;
  height: 100vh;
  background-color: #e6e9ee;
  /* background-image: url("../img/neu-background.jpg");
  background-repeat: no-repeat;
  background-size: cover; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-direction: column;
}

h1 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  padding: 10px 0;
}

.content {
  max-width: 700px;
  padding: 40px;
  padding-top: 20px;
  background: #dde1e7;
  border-radius: 10px;
  box-shadow: -3px -3px 7px #ffffff73, 2px 2px 5px rgba(94, 104, 121, 0.288);
}
.content .text {
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #595959;
}
.field {
  height: 50px;
  width: 100%;
  display: flex;
  position: relative;
}
.field:nth-child(2) {
  margin-top: 30px;
}
.field input {
  height: 100%;
  width: 100%;
  padding: 0 45px;
  outline: none;
  border: none;
  font-size: 18px;
  background: #dde1e7;
  color: #595959;
  border-radius: 10px;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
}
.field input:focus {
  box-shadow: inset 1px 1px 2px #babecc, inset -1px -1px 2px #ffffff73;
}
.field span {
  position: absolute;
  color: #595959;
  width: 50px;
  line-height: 50px;
  text-align: center;
}
.field label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 45px;
  pointer-events: none;
  color: #666666;
}
.field input:valid ~ label {
  opacity: 0;
}
.forgot-pass {
  text-align: left;
  margin: 10px 0 10px 5px;
}
.forgot-pass a {
  font-size: 16px;
  color: #3498db;
  text-decoration: none;
}
.forgot-pass:hover a {
  text-decoration: underline;
}
button {
  margin: 30px 0 0;
  width: 100%;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  font-weight: 600;
  background: #dde1e7;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #595959;
  box-shadow: 2px 2px 5px #babecc, -5px -5px 10px #ffffff73;
}

button:hover {
  color: #3498db;
}

button:focus {
  color: #3498db;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
}
.sign-up {
  margin: 10px 0;
  color: #595959;
  font-size: 16px;
}
.sign-up a {
  color: #3498db;
  text-decoration: none;
}
.sign-up a:hover {
  text-decoration: underline;
}

.logos {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.emprende,
.moveup {
  width: 45%;
  height: fit-content;
}

.logos span {
  margin-left: 10px;
  font-size: 30px;
  font-weight: 600;
  color: #00336d;
}

.alert {
  width: 100%;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert > button {
  width: 45px;
  margin: 0;
}

@media screen and (width <= 480px) {
  .content {
    width: 100%;
  }
  .loginContext {
    height: 60vh;
    /* padding-top: 120px; */
  }
  .logos {
    flex-direction: column;
  }
  .moveup {
    width: 50vw;
  }
  .logos span {
    font-size: 8vw;
    margin: 0;
    margin-left: -1ch;
  }

  .logos span::first-letter {
    color: #00336d00;
  }
}
