@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&display=swap");
body {
  padding: 0;
  margin: 0;
}

@keyframes progressRotate {
  100% {
    transform: rotate(360deg);
  }
}
body {
  font-family: "Poppins", sans-serif;
  position: relative;
}

main {
  display: flex;
  justify-content: center;
  align-items: auto;
  gap: 0;
  flex-direction: row;
  height: 100dvh;
}
main .heroSection {
  width: 100%;
  background-image: url("/assets/images/happybanker.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
}
main .heroSection .infoHolder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}
main .heroSection .infoHolder h1 {
  width: auto;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
main .heroSection .infoHolder span {
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
main .heroSection .infoHolder a {
  text-decoration: none;
}
main .heroSection .infoHolder button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 250px;
  padding: 10px;
  margin-block: 20px;
  background-color: #21E5A7;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgb(16, 34, 43);
  border: 2px solid rgb(16, 34, 43);
  border-radius: 8px;
  cursor: pointer;
  transition: all 100ms ease;
}
main .heroSection .infoHolder button:hover {
  padding: 12px;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  main .heroSection {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  main .heroSection {
    display: none;
  }
}
main .componentSection {
  display: flex;
  justify-content: center;
  align-items: auto;
  gap: 0;
  width: 100%;
  background-color: rgb(16, 34, 43);
}
main .componentSection .componentHolder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  gap: 40px;
  padding: 10px;
}
main .componentSection .componentHolder .emailForm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  color: white;
}
main .componentSection .componentHolder .emailForm label {
  width: 100%;
  font-size: 14px;
  text-align: start;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
main .componentSection .componentHolder .emailForm .formInput {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0;
  flex-direction: row;
  width: 400px;
  border: 1px solid rgba(16, 34, 43, 0.3);
  border-radius: 8px;
  padding: 5px;
  background-color: white;
  transition: all 50ms ease;
}
main .componentSection .componentHolder .emailForm .formInput:nth-child(8) {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0;
}
main .componentSection .componentHolder .emailForm .formInput:focus-within {
  border: 3px solid rgba(16, 34, 43, 0.3);
}
main .componentSection .componentHolder .emailForm .formInput svg {
  fill: rgb(16, 34, 43);
  width: 30px;
  height: 30px;
  margin-inline: 10px;
}
main .componentSection .componentHolder .emailForm .formInput input {
  width: auto;
  font-size: 14px;
  text-align: start;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  color: rgb(16, 34, 43);
}
@media screen and (max-width: 520px) {
  main .componentSection .componentHolder .emailForm .formInput {
    width: 100%;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  main .componentSection .componentHolder .emailForm .formInput {
    width: 380px;
  }
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  width: 100%;
  margin-block: 5px;
  gap: 10px;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder a {
  text-decoration: none;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  width: 280px;
  padding: 10px;
  background-color: #21E5A7;
  font-family: "Poppins", sans-serif;
  color: rgb(16, 34, 43);
  border: 2px solid rgb(16, 34, 43);
  border-radius: 8px;
  cursor: pointer;
  transition: width 100ms ease, font-weight 100ms ease;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder button svg {
  display: none;
  fill: rgb(16, 34, 43);
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder button.active svg {
  display: flex;
  animation: progressRotate 1s infinite linear;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder button:hover {
  padding: 12px;
  font-weight: 700;
  outline: 3px solid rgba(16, 34, 43, 0.3);
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder .buttlink {
  display: none;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder .signsuccessNote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: #21E5A7;
  padding: 10px;
  padding-inline: 20px;
  border-radius: 50px;
  display: none;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder .signsuccessNote.active {
  display: flex;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder .signsuccessNote svg {
  fill: rgb(16, 34, 43);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder .signsuccessNote span {
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(16, 34, 43);
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder .signfailNote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgb(255, 77, 79);
  padding: 10px;
  padding-inline: 20px;
  border-radius: 50px;
  display: none;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder .signfailNote.active {
  display: flex;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder .signfailNote svg {
  fill: rgb(168, 7, 26);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
main .componentSection .componentHolder .emailForm .sendButtNoteHolder .signfailNote span {
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(168, 7, 26);
}
@media screen and (max-width: 520px) {
  main .componentSection .componentHolder .emailForm .sendButtNoteHolder .buttlink {
    display: flex;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  main .componentSection .componentHolder .emailForm .sendButtNoteHolder .buttlink {
    display: flex;
  }
}/*# sourceMappingURL=signin.css.map */