@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;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 {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  overflow: hidden;
}

.section {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
}

.active-error {
  display: block !important;
}

.error {
  color: red;
  text-align: center;
  display: none;
}

.form {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  position: relative;
}
.form div.box {
  max-width: 500px;
  width: -moz-fit-content;
  width: fit-content;
}
.form div.box .logo-fav {
  width: 30px;
  margin-bottom: 10px;
}
.form div.box h1.prompt {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  opacity: 0.95;
}
.form div.box h1.prompt span {
  font-weight: 600;
}
.form div.box h1.prompt span span {
  color: #DF652B;
}
.form div.box p.desc {
  opacity: 0.5;
  margin: 0.5rem 0;
  font-weight: 400;
}
.form div.box p.label {
  font-size: 0.85rem;
  opacity: 0.8;
}
.form div.box input {
  width: 100%;
  border: none;
  padding: 0.6rem 0;
  border-bottom: 4px solid #DF652B;
  font-size: 0.95rem;
}
.form div.box input:focus {
  outline: 0;
}
.form div.box input:focus + .underline {
  width: 100%;
}
.form div.box .underline {
  position: absolute;
  border-bottom: 4px solid #009687;
  width: 0%;
  left: 0;
  bottom: 0;
  z-index: 400000;
  transition: width 0.5s ease-in-out;
}
.form div.box .input-field {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  margin: 2.5rem 0;
}
.form div.box img {
  width: 100%;
}
.form div.box .alternate {
  opacity: 0.95;
  text-align: center;
}
.form div.box .alternate a {
  text-decoration: none;
  color: #027468;
}
.form div.box .alternate a:hover {
  text-decoration: underline;
}
.form div.box button {
  width: 100%;
  margin: 2rem 0 1rem 0;
  height: 50px;
  border-radius: 4px;
  border: none;
  background-color: #DF652B;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.5s ease;
  border: 2px solid #DF652B;
  font-size: 0.9rem;
  font-weight: 600;
}
.form div.box button:hover {
  background-color: #ffffff;
  color: #DF652B;
}

.img-section {
  background-image: linear-gradient(rgba(223, 101, 43, 0.25), rgba(223, 101, 43, 0.25)), url("/assets/images/signup-test.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1015px) {
  .form {
    flex: 2 0.65 auto;
  }
}
@media (max-width: 741px) {
  .img-section {
    display: none;
  }
  .form {
    padding: 2rem;
    position: relative;
  }
  .form div.box h1.prompt {
    white-space: nowrap;
    flex-wrap: wrap;
  }
  .form::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #DF652B;
    opacity: 0.3;
    top: 0;
    left: 0;
    -webkit-clip-path: circle(55% at 100% -10%);
            clip-path: circle(55% at 100% -10%);
    z-index: -501;
  }
}
.img-section {
  background-image: url("/assets/images/login-test2.jpg");
  position: relative;
}
.img-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(223, 101, 43, 0.15);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
}/*# sourceMappingURL=login.css.map */