@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");
::-webkit-scrollbar {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--primery);
}

:root {
  --primery:#02b261;
  --Background:#fcfcfc;
  --grey:#adb7b7;
  --secondry:#5f7273;
  --dark:#112e2f;
}

.wrapper {
  background: var(--Background);
  width: 400px;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .wrapper {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}

/* signup form css */
.form {
  padding: 25px 30px;
}

.form header {
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey);
}

.form form {
  margin: 20px 0;
}

.form form .error-txt {
  color: #721c24;
  background: #f8d7da;
  padding: 8px 10px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #f5c6cb;
  display: none;
}

.form form .name-details {
  display: flex;
}

.form form .name-details .field:first-child {
  margin-right: 10px;
}

.form form .name-details .field:last-child {
  margin-left: 10px;
}

.form form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  position: relative;
}

.form form .field label {
  margin-bottom: 2px;
}

.form form .field input {
  outline: none;
}

.form form .input input {
  height: 40px;
  width: 100%;
  font-size: 16px;
  padding: 0 10px;
  border: 1px solid var(--grey);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form form .image input {
  font-size: 17px;
}

.form form .button input {
  margin-top: 13px;
  height: 45px;
  border: none;
  font-size: 17px;
  font-weight: 400;
  background: var(--dark);
  color: var(--Background);
  border-radius: 5px;
  cursor: pointer;
}
.form form .button input:hover {
  background: var(--primery);
}

.form form .field i {
  position: absolute;
  right: 15px;
  color: var(--grey);
  top: 70%;
  transform: translateY(-50%);
  cursor: pointer;
}

.form form .field i.active::before {
  content: "\f070";
  color: var(--dark);
}

.form .link {
  text-align: center;
  margin: 10px 0;
  font-size: 17px;
}

.form .link a {
  color: var(--dark);
}

.form .link a:hover {
  text-decoration: underline;
}

/* user area css *//*# sourceMappingURL=formcss.css.map */