@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap");
* {
  font-family: "Nunito", sans-serif;
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  padding: 100px 0 50px 0;
  color: #343434;
}
@media screen and (max-device-width: 600px) {
  body {
    padding: 60px 20px 20px 20px;
  }
}

strong {
  font-weight: 700;
}

.container {
  width: 900px;
  padding: 100px 50px 50px 50px;
  border-radius: 20px;
  border: 2px solid #3DB74E;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: max-content;
}
@media screen and (max-device-width: 600px) {
  .container {
    font-size: 14px;
    width: 100%;
    padding: 70px 20px 20px 20px;
    gap: 15px;
  }
}

a.logo {
  position: absolute;
  top: -100px;
  background: #fff;
  padding: 5px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-device-width: 600px) {
  a.logo {
    top: -70px;
  }
  a.logo img {
    width: 120px;
  }
}

.title {
  display: flex;
  flex-direction: column;
  padding: 0 50px;
}
.title h1 {
  font-size: 32px;
  font-weight: 900;
  color: #056839;
}
@media screen and (max-device-width: 600px) {
  .title {
    padding: 0px;
  }
  .title h1 {
    font-size: 18px;
  }
}

.form {
  display: flex;
  position: relative;
}
.form input {
  width: 100%;
  height: 100px;
  background: #FCFCFC;
  border: 2px solid #D9D9D9;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 22px;
}
.form input:focus {
  box-shadow: 0 0 0 5px #3db74d7b;
  border: 2px solid #3DB74E;
  outline: none;
}
.form button {
  position: absolute;
  right: 12px;
  top: 12px;
  height: 75px;
  border: none;
  padding: 0 35px;
  border-radius: 5px;
  background: #FF5C00;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}
@media screen and (max-device-width: 600px) {
  .form input {
    height: 60px;
    font-size: 14px;
    padding: 0 10px;
  }
  .form button {
    font-size: 14px;
    height: 40px;
    padding: 0 15px;
    top: 10px;
    right: 10px;
  }
}

.info {
  border: 1px solid #FF5C00;
  border-radius: 10px;
  background: #FFF5E7;
  padding: 15px;
  text-align: left;
  display: flex;
  gap: 10px;
}
.info img {
  max-height: 50px;
}
.info i {
  color: #FF5C00;
  font-size: 24px;
}
.info span {
  font-size: 14px;
}
.info--blue {
  border: 1px solid #3586FF;
  background: #F1F7FF;
}
.info--blue span {
  font-size: 18px;
}
@media screen and (max-device-width: 600px) {
  .info--blue span {
    font-size: 14px;
  }
}

.result {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #3DB74E;
  border-radius: 10px;
  padding: 40px 60px 30px 60px;
  margin-top: 25px;
  gap: 10px;
  background: #ECFFEF;
}
.result i {
  font-size: 40px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: #fff;
  border: 1px solid #3DB74E;
  border-radius: 100%;
  top: -30px;
  color: #3DB74E;
  left: 50%;
  transform: translateX(-50%);
}
.result h3 {
  font-size: 26px;
  color: #3DB74E;
  font-weight: 900;
}
.result--error {
  background: #FFF0F0;
  border: 1px solid #FF4444;
}
.result--error i {
  border: 1px solid #FF4444;
  color: #FF4444;
}
.result--error h3 {
  color: #FF4444;
}
@media screen and (max-device-width: 600px) {
  .result {
    padding: 40px 15px 20px 15px;
  }
  .result h3 {
    font-size: 18px;
  }
}

.lang {
  margin: auto;
  width: fit-content;
  display: flex;
  gap: 10px;
  border: 1px solid #DDD;
  padding: 5px 15px;
  border-radius: 30px;
}
.lang a {
  color: #404040;
  font-size: 12px;
}
.lang a:hover {
  color: #FF5C00;
}


.app {
  margin: auto;
  width: fit-content;
  display: flex;
  gap: 10px;
  padding: 5px 15px;
  border-radius: 30px;
}
.app a {
  color: #404040;
  font-size: 12px;
}
.app a:hover {
  color: #FF5C00;
}

a.logoalt {
  position: absolute;
  top: 626px;
  background: #fff;
  padding: 0px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-device-width: 600px) {
  a.logoalt {
    top: 626px;
  }
  a.logoalt img {
    width: 120px;
  }
}


/*# sourceMappingURL=main.css.map */
