@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
.login {
  font-family: "Source Sans 3", sans-serif;
}

.login_main {
  width: 505px !important;
  padding-top: 48px;
}

.login-text {
  font-size: 34px;
  color: #414141;
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif !important;
}

.back-btn {
  font-size: 19px;
  text-decoration: underline;
}

.login-texts h3 {
  font-size: 34px;
  font-weight: 400;
}

.login-texts a {
  font-size: 28px;
  font-weight: 400;
  color: #0f74bc;
}

.logo-img {
  padding: 30px 30px 48px;
}

.google-btn {
  padding: 10px 40px;
  border: 1px solid #0f74bc;
  background-color: white;
  transition: 0.5s all ease;
  margin: 20px 0 0;
}

.google-btn:hover {
  background-color: #0f74bc;
  color: white;
}

.submit-text {
  font-size: 16px;
  width: inherit;
  font-weight: 600;
  color: #0f74bc;
  font-family: "Source Sans 3", sans-serif !important;
  transition: 0.5s all ease;
}

.google-btn:hover .submit-text {
  color: white;
}

.or-divider .or-text {
  font-size: 15px;
  color: #414141;
  font-weight: 400;
  padding: 0 6px;
  font-family: "Source Sans 3", sans-serif !important;
}

.or-divider {
  margin: 30px 0 0;
}

.login-pages {
  padding-top: 0px !important;
}

.form-text {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  /* border: 1px 1px 0px solid #C0C0C0; */
  border-top: 1px solid #C0C0C0;
  border-left: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  padding: 15px 16px !important;
  color: #000 !important;
}

.custom-field {
  position: relative;
  font-size: 14px;
  border-top: 20px solid transparent;
  margin-bottom: 5px;
  display: inline-block;
  --field-padding: 16px;
}

.custom-field input {
  border: none;
  background: #f2f2f2;
  padding: var(--field-padding);
  border-radius: 3px;
  width: 250px;
  outline: none;
  font-size: 14px;
  border-top: 1px solid #C0C0C0;
  border-left: 1px solid #C0C0C0;
  border-right: 1px solid #C0C0C0;
  border-bottom: 1px solid #616161;
}

.custom-field .placeholder {
  position: absolute;
  left: var(--field-padding);
  width: calc(100% - var(--field-padding) * 2);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  top: 33px;
  line-height: 100%;
  transform: translateY(-50%);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  transition: top 0.3s ease, color 0.3s ease, font-size 0.3s ease;
  opacity: inherit;
  display: flex;
  align-items: flex-start;
  background-color: transparent !important;
}

.placeholder span {
  font-size: 14px;
  color: #da100b;
}

.custom-field input:not(:-moz-placeholder) + .placeholder {
  top: 20px;
  font-size: 12px;
  color: #1672ec;
  font-weight: 400;
}

.custom-field input:focus + .placeholder,
.custom-field input:not(:placeholder-shown) + .placeholder {
  top: 20px;
  font-size: 12px;
  color: #1672ec;
  font-weight: 400;
}

/* THREE - Animated Border */
.custom-field.three {
  --draw-duration: 0.1s;
  --draw-color: #222;
  --draw-line-width: 2px;
  --draw-easing: linear;
}

.custom-field.three .border {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  padding-left: 12px;
  border-radius: 3px;
}

.custom-field.three .border::after,
.custom-field.three .border::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-radius: 3px;
}

.custom-field.three .border::before {
  left: 0;
  bottom: 0;
  border-right: 0px solid var(--draw-color);
  border-bottom: 0px solid var(--draw-color);
  transition: border 0s linear calc(var(--draw-duration) * 4), height var(--draw-duration) var(--draw-easing) calc(var(--draw-duration) * 2), width var(--draw-duration) var(--draw-easing) calc(var(--draw-duration) * 3);
}

.custom-field.three .border::after {
  right: 0;
  top: 0;
  border-left: 0px solid var(--draw-color);
  border-top: 0px solid var(--draw-color);
  transition: border 0s linear calc(var(--draw-duration) * 2), height var(--draw-duration) var(--draw-easing), width var(--draw-duration) var(--draw-easing) var(--draw-duration);
}

.custom-field.three input:not(:-moz-placeholder) ~ .border::before, .custom-field.three input:not(:-moz-placeholder) ~ .border::after {
  width: 100%;
  height: 100%;
  border-width: var(--draw-line-width);
}

.custom-field.three input:focus ~ .border::before,
.custom-field.three input:not(:placeholder-shown) ~ .border::before,
.custom-field.three input:focus ~ .border::after,
.custom-field.three input:not(:placeholder-shown) ~ .border::after {
  width: 100%;
  height: 100%;
  border-width: var(--draw-line-width);
}

.custom-field.three input:focus ~ .border::before {
  transition-delay: 0s, var(--draw-duration), 0s;
}

.custom-field.three input:focus ~ .border::after {
  transition-delay: calc(var(--draw-duration) * 2), calc(var(--draw-duration) * 3), calc(var(--draw-duration) * 2);
}

/* 
.custom-field input:focus{
    border: 1px solid #0f74bc;

} */
.login-screens {
  margin-left: 0 !important;
  /* min-height: auto; */
}

.content-page {
  padding: 0 !important;
  min-height: 0 !important;
}

.login_submitBtn {
  padding: 9px 40px;
  border: 1px solid #0f74bc;
  background-color: #0f74bc;
  color: white;
  transition: 0.5s all ease;
  font-weight: 600;
  font-family: "Source Sans 3", sans-serif !important;
  width: 100%;
}

.login_submitBtn:hover {
  border: 1px solid black;
  background-color: white;
  color: #0f74bc;
}

.login_resendotpBtn {
  padding: 9px 40px;
  border: 1px solid #0f74bc;
  background-color: white;
  color: #0f74bc;
  transition: 0.5s all ease;
  font-weight: 600;
  font-family: "Source Sans 3", sans-serif !important;
  width: 100%;
}

.login_resendotpBtn:hover {
  border: 1px solid black;
  background-color: #0f74bc;
  color: white;
}

.custom-my {
  margin: 50px 0;
}

.margin-bottom {
  margin-bottom: 50px !important;
}

.choose_text {
  font-size: 28px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  color: #212121;
}

.otp_class2 {
  margin-bottom: 10px !important;
}

.otp_btn {
  color: #0F77C1;
  font-weight: 600;
}

.required {
  color: red;
}

.otp_class3 {
  margin-bottom: 0px !important;
}

.cuntry_select {
  height: 47px;
  padding: 12px;
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.862745098) !important;
}

::placeholder {
  color: rgba(0, 0, 0, 0.862745098) !important;
}

input::-moz-placeholder {
  color: black;
}

input::placeholder {
  color: black;
}

input.required::-moz-placeholder {
  color: black;
}

input.required::placeholder {
  color: black;
}

input.required::-moz-placeholder {
  content: "Enter Email";
}

input.required::placeholder {
  content: "Enter Email";
}

input.required::after {
  content: " *";
  color: red;
}

.input-wrapper input {
  transition: all 0.2s ease-in-out;
}

.input-wrapper input:hover {
  background-color: rgba(197, 220, 250, 0.4392156863);
}

.join_btn {
  padding: 6px 40px;
  background-color: #0F77C1;
  color: white;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #0F77C1;
  transition: all 0.5s ease !important;
  font-family: "Source Sans 3", sans-serif;
  height: 50px;
}

.join_btn:hover {
  border: 1px solid #0F77C1;
  color: #0F77C1;
  background-color: white;
}

.create_btn {
  padding: 6px 30px;
  background-color: #ea4335;
  color: white;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #ea4335;
  transition: all 0.5s ease !important;
  font-family: "Source Sans 3", sans-serif;
  text-align: center;
}

.create_btn:hover {
  border: 1px solid #ea4335;
  color: #ea4335;
  background-color: white;
}

.highlight_text {
  font-size: 18px;
  font-weight: 400;
  color: #0f74bc;
}

.setup_pwd {
  font-size: 30px;
  font-weight: 500;
}

.skip_btn {
  padding: 6px 40px;
  background-color: white;
  color: #0F77C1;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #0F77C1;
  transition: all 0.5s ease !important;
  font-family: "Source Sans 3", sans-serif;
  width: 100% !important;
  height: 50px;
}

.skip_btn:hover {
  border: 1px solid #0F77C1;
  color: white;
  background-color: #0F77C1;
}

.skip_text {
  color: #616161;
  font-size: 14px;
}

.error_text {
  font-size: 16px;
  font-weight: 600;
  font-family: "Source Sans 3", sans-serif;
}

.text-success {
  color: #198754 !important;
}

.register-form-div {
  margin-bottom: 0 !important;
}

.register-form-field {
  color: #000 !important;
}

.mb-3.input-wrapper.enter-email-field-parent-class {
  margin-bottom: 1rem !important;
}

.mb-3.setup-pwd-class {
  margin-bottom: 0px !important;
}

.or-divider.show-password-screen-divider, .or-divider.login-password-screen-divider {
  margin: 20px 0 20px;
}/*# sourceMappingURL=login.css.map */