@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");
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #212529;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #212529;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #365ffa;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}

button {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button.primary {
  background-color: #365ffa;
  color: #ffffff;
}
button.primary:hover {
  color: #e9ecef;
}
button.secondary {
  background-color: #6c757d;
  color: #ffffff;
}
button.secondary:hover {
  color: #e9ecef;
}

input, textarea {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #dee2e6;
  border-radius: 5px;
}
input:focus, textarea:focus {
  border-color: #365ffa;
  outline: none;
}

ul, ol {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-left: 20px;
}

li {
  margin-bottom: 5px;
}

small {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 0.875rem;
  color: #666;
}

.emphasis {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.strong {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

blockquote {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
  border-left: 4px solid #365ffa;
  padding-left: 15px;
  color: #555;
}

.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

body .signup-container,
body .login-container {
  max-width: 400px;
  width: 100%;
  padding: 20px;
  /* background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}
body .signup-container h2,
body .login-container h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  color: #343a40;
  padding-left: 10px; /* Adjust spacing as needed */
}
body .signup-container h2::before,
body .login-container h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background-color: #365ffa; /* You can change this color as needed */
}
body .signup-container .form-group label,
body .login-container .form-group label {
  font-weight: 600;
  color: #212529;
}
body .signup-container .form-group .form-control,
body .login-container .form-group .form-control {
  position: relative;
  font-size: 20px;
  padding-right: 40px; /* Adjust to make space for the icon */
}
body .signup-container .form-group .password-toggle,
body .login-container .form-group .password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
body .signup-container .form-group .otp-input-fields,
body .login-container .form-group .otp-input-fields {
  margin: auto;
  max-width: 400px;
  width: auto;
  display: flex;
  justify-content: center;
  justify-content: space-between;
}
body .signup-container .form-group .otp-input-fields .otp-input,
body .login-container .form-group .otp-input-fields .otp-input {
  height: 40px;
  width: 40px;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #3688ff;
  text-align: center;
  outline: none;
  font-size: 16px;
}
body .signup-container .form-group .otp-input-fields .otp-input:focus,
body .login-container .form-group .otp-input-fields .otp-input:focus {
  border-width: 2px;
  border-color: #365ffa;
  font-size: 20px;
}
body .signup-container .btn,
body .login-container .btn {
  font-size: 20px;
  width: 100%;
}
body .signup-container .divider,
body .login-container .divider {
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 200;
  margin: 20px 0;
}
body .signup-container .divider::before, body .signup-container .divider::after,
body .login-container .divider::before,
body .login-container .divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #dee2e6;
}
body .signup-container .divider:not(:empty)::before,
body .login-container .divider:not(:empty)::before {
  margin-right: 10px;
}
body .signup-container .divider:not(:empty)::after,
body .login-container .divider:not(:empty)::after {
  margin-left: 10px;
}
body .signup-container .refer,
body .login-container .refer {
  display: block;
  text-align: center;
  color: #365ffa;
  border: 1px solid #3688ff;
  padding: 7px;
  border-radius: 5px;
  text-decoration: none;
}
body .signup-container .refer:hover,
body .login-container .refer:hover {
  background-color: #3688ff;
  color: white;
}
@media (min-width: 1024px) {
  body .signup-container,
  body .login-container {
    max-width: 440px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}/*# sourceMappingURL=main.css.map */