@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
}

.mm-top {
  margin-top: 36px;
}

:root {
  --text-color: #fff;
  --heading-size-40: 2.5rem;
  --placeholder-size-18: 18px;
  --links-color: #000;
  --button-text-size-20: 20px;
  --logo-font-size-48: 48px;
  --form-text-32: 32px;
  --a-text-size: 18px;
  --a-opacity: 0.8;
}

p {
  margin: 0px;
}

a {
  text-decoration: none !important;
}

.m-form-main-div {
  width: 100%;
  height: auto;
}

.m-form-inner {
  height: 100vh;
  width: 100%;
  display: flex;
}

.logo-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 42%;
  background: green;
}

/* ::-webkit-scrollbar {
  display: none;
} */

.form-section {
  overflow: scroll;
  height: 100%;
  width: 58%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(38.3deg, #0679d7 9.07%, #8bf18f 100.26%);
}

.form-inner {
  padding: 50px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.light-logo-img {
  position: absolute;
  bottom: 0px;
  width: 20%;
  height: 20%;
  left: 0;
}

.logo-img {
  width: auto;
  height: auto;
}

.form-heading {
  color: var(--text-color) !important;
  font-size: var(--heading-size-40) !important;
  font-weight: 600 !important;
  margin-bottom: 40px !important;
  font-style: normal !important;
}

.inner-font span {
  font-size: 15px !important;
  font-weight: 300 !important;
  font-family: "Mulish", sans-serif !important;
  color: black;
  display: flex;
  align-items: center;
}

.reference-link {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black !important;
  font-size: 18px !important;
  font-family: "Mulish", sans-serif !important;
  background-color: white;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);

  border-radius: 10px !important;
}

.refer-link {
  font-size: 15px;
  font-weight: 500;
  color: black;
  display: flex;
  align-items: center;
}

.refer-link:hover {
  color: black;
}

.google-img {
  height: 23px;
  width: 23px;
  margin-right: 10px;
}

.form-input-div {
  text-align: center;
  align-items: center;
  width: 100%;
  position: relative;
  height: 55px;
  display: flex;
  margin-top: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-input-div i {
  color: white;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-input-div input {
  color: var(--text-color);
  outline: none;
  height: 100%;
  border: none;
  width: 100%;
  background: transparent;
  padding: 0 15px;
}

.form-input-div input::placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: var(--placeholder-size-18);
  color: var(--text-color);
}

.choice-mid {
  margin-top: 36px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.or-text {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color);
  margin: 0px auto;
  padding: 0px;
}

.blank-border {
  width: 45%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.blank-border-1 {
  margin-top: 36px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/*---------Custom-Checkbox-----*/
.remember-checkbox-div {
  display: flex;

  align-items: center;
  color: var(--text-color);
  position: relative;

  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.remember-checkbox-div input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 20px;
  width: 20px;
}

.remember-checkbox-div .checkmark {
  text-align: center;
  position: absolute;
  top: 3;
  left: 0px;
  height: 20px;
  width: 20px;
  background-color: "transparent";
  border: 1px solid #ffffff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.remember-checkbox-div .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.remember-checkbox-div input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.remember-checkbox-div .checkmark:after {
  top: 1px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*---------Custom-Checkbox End-----*/

.frgt-outer-div {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
}

.remember-text {
  margin-left: 30px;
}

.form-a {
  font-size: var(--a-text-size);
  opacity: var(--a-opacity);
  color: var(--text-color);
}

.form-a:hover {
  color: var(--text-color);
}

.form-a span {
  opacity: 1;

  font-weight: 500;
}

.form-sbmt-btn {
  height: 100%;
  width: 100%;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background: linear-gradient(
      38.3deg,
      rgba(255, 255, 255, 0.5) 9.07%,
      #8bf18f 100.26%,
      #d7e7f3 100.26%,
      #9d5b0d 100.26%
    ),
    #ecf4f0;
  display: "flex";
  padding: "10px 20px";
  align-content: "center";
}

.form-sbmt-btn button {
  outline: none;
  border: none;
  height: 100%;
  width: 100%;
  background-color: transparent;

  font-size: var(--button-text-size-20);
  color: "black";
  font-weight: 600;
}

.form-sigup-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}

.form-sigup-btn a {
  color: var(--text-color);
  font-weight: 600;
  font-size: var(--button-text-size-20);
}

.form-sigup-btn:hover {
  background: linear-gradient(
      38.3deg,
      rgba(255, 255, 255, 0.5) 9.07%,
      #8bf18f 100.26%,
      #d7e7f3 100.26%,
      #9d5b0d 100.26%
    ),
    #ecf4f0;
}

.form-sigup-btn:hover a {
  color: black;
}

.sign-up-a {
  text-align: center;
  width: 100%;
}

.form-footer-div {
  display: flex;
  margin-top: 60px;
  column-gap: 5px;
  justify-content: center;
}

.form-footer-div a {
  padding: 0px 18px;
  color: var(--text-color);
  border-right: 0.5px solid white;
}

.form-footer-div a:last-child {
  border-right: none;
}

/* zee styles here  */

.pp-auth-form-outer {
  height: 100vh;
  width: 100%;
}

.pp-auth-form-outer * {
  box-sizing: border-box !important;
}

.auth-form-inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-form-logo-left {
  width: 42%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  transition: 0.5s all;
}

.form-verification {
  align-items: flex-start;
  width: 575px;
}

.auth-form-logo-left img {
  width: auto;
  height: auto;
  transition: 0.5s all;
}

.auth-form-form-right {
  width: 58%;
  height: 100%;
  background: linear-gradient(38.3deg, #0679d7 9.07%, #8bf18f 100.26%);
  max-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow-y: scroll;
  padding: 50px 50px 20px 50px;
  transition: 0.5s all;
}

.advisor-auth-form-logo-left {
  width: 42%;
  background: linear-gradient(38.3deg, #0679d7 9.07%, #8bf18f 100.26%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  transition: 0.5s all;
}

.advisor-auth-form-logo-left img {
  width: auto;
  height: auto;
  transition: 0.5s all;
}

.advisor-auth-form-form-right {
  width: 58%;
  height: 100%;
  background: #fff;
  max-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow-y: scroll;
  padding: 50px 50px 20px 50px;
  transition: 0.5s all;
}

.advisor-title {
  color: #252b26;
  font-size: 30px;
  font-family: Mulish;
  font-weight: 700;
  line-height: 60px;
}

.model-backgroundColor {
  /* /background: linear-gradient(38.3deg, #0679d7 9.07%, #8bf18f 100.26%); */
}

.auth-fields-form {
  box-sizing: content-box;
  margin: 10px;
}

.auth-form-half .auth-form-logo-left,
.auth-form-half .auth-form-form-right {
  width: 50%;
}

.form-verification-left-text h1 {
  color: #000 !important;
  font-size: 40px;
  font-weight: 800;
  margin: 48px 0px;
}

.form-verification-left-text p {
  font-size: 20px;
}

.form-verify-label {
  text-align: center;
  color: #ffffffc2;
  position: relative;
  width: 500px;
}

.form-verify-message {
  text-align: center;
  color: #fff;
  position: relative;
  /* width: 500px; */
  /* top: -50px; */
}

.form-verify-message-text span {
  display: block;
  text-align: center;
  font-weight: 300;
  margin-bottom: 15px;
}

.m-date-text span {
  display: block;
  text-align: center;
  font-weight: 300;
}

.form-verify-message strong {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
}

.form-verify-message p {
  font-size: 18px;
  /* line-height: 38px; */
  font-weight: 400;
  margin-top: 15px;
}

.form-verify-message button {
  background: none;
  outline: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 100%;
}

.form-verify-message button.button-transparent {
  position: relative;
}

.btn-top-70 {
  top: 70px;
}

.btn-top-50 {
  top: 25px;
}

.form-verify-message button.button-gradeint {
  padding: 15px 0px;
  position: relative;
  top: 40px;
  outline: none;
  border: none;
  height: 100%;
  width: 100%;
  background-color: transparent;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background: linear-gradient(
      38.3deg,
      rgba(255, 255, 255, 0.5) 9.07%,
      #8bf18f 100.26%,
      #d7e7f3 100.26%,
      #9d5b0d 100.26%
    ),
    #ecf4f0;
  font-size: var(--button-text-size-20);
  color: #000000;
  font-weight: 600;
}

.form-verify-message button.button-white {
  background-color: #fff;
  color: #0b2117 !important;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 15px 0px;
  position: relative;
  top: 70px;
}

.button-white2 {
  /* background-color: #fff; */
  color: white !important;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 15px 0px;
  position: relative;
  top: 70px;
  border: 1px solid white !important;
}

.register-form-user-profile {
  text-align: center;
  margin: 25px 0px;
}

.register-form-user-profile img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}

.password-requirements-container {
  display: block;
}

@media screen and (max-width: 767px) {
  .desktop-only {
    display: none;
    /* Hide the container for mobile */
  }
}

.password-requirement {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffffdb !important;
}

.form-verify-message button.checkmark::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 8px;
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  left: 41%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.m-form-verify-message-text {
  position: relative;
  top: -50px;
}

.form-verify-message-tex-after2 {
  /* position: absolute; */
  content: "";
  height: 5px;
  width: 40px;
  border-radius: 10px;
  margin-left: 49%;
  margin-top: 3%;
  transform: translate(-50%, -50%);
}

.form-verify-message-tex-after {
  /* position: absolute; */
  content: "";
  height: 5px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  margin-left: 49%;
  margin-top: 3%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1260px) {
  .form-verification {
    width: 60%;
  }

  .form-verify-message {
    width: 100%;
  }
}

/* @media (max-width: 991px) {
  .auth-form-logo-left {
    width: 35%;
    z-index: 2;
  }

  .auth-form-logo-left img {
    width: 40%;
  }

  .auth-form-form-right {
    width: 65%;
    z-index: 1;
  }

  .auth-form-form-right {
    padding: 0px 20px;
  }

  .form-verification {
    width: 60%;
  }

  .form-verify-message {
    width: 100%;
  }

  .form-verification-left-text h1 {
    color: #000 !important;
    font-size: 32px;
    margin: 15px 0px;
  }

  .form-verification-left-text p {
    font-size: 15px;
  }

  .form-verify-message button.button-gradeint {
    top: 30;
  }
} */

@media (max-width: 991px) {
  .auth-form-logo-left {
    width: 0% !important;
    z-index: 2;
    overflow: hidden;
  }
  .advisor-auth-form-logo-left {
    width: 0% !important;
    z-index: 2;
    overflow: hidden;
  }
  .auth-form-logo-left img {
    width: 40%;
  }
  .advisor-auth-form-form-right {
    width: 100% !important;
    z-index: 1;
  }
  .auth-form-form-right {
    width: 100% !important;
    z-index: 1;
  }

  .remember-text {
    margin-left: 20px;
    font-size: 13px;
  }

  .frgt-text a {
    font-size: 13px;
  }

  .remember-checkbox-div .checkmark {
    height: 15px;
    width: 15px;
  }

  .form-input-div {
    display: flex;
    height: 45px;
    margin-top: 15px;
  }

  .mm-top,
  .blank-border-1 {
    margin-top: 20px;
  }

  .reference-link {
    height: 45px;
  }

  .reference-link:last-child {
    margin-top: 10px;
  }

  .choice-mid {
    margin-top: 20px;
  }

  .form-heading {
    margin-bottom: 10px;
  }

  .form-verify-message {
    width: 100%;
  }

  .form-verify-message button.button-gradeint {
    padding: 10px 0px;
    top: 50px;
  }

  .form-verify-message button.checkmark::after {
    left: 38%;
    color: #000000;
    border-bottom: 3px solid #000;
    border-left: 3px solid #000;
  }
}

/*Financial Scree*/
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.m-date-outer-div {
  margin: 12px;
  display: flex;
  flex-direction: column;

  align-items: flex-start;
}

.m-date-outer-div > div {
  margin: 6px 0px;
}

.form-date-input {
  background-image: url("../assets/newimages/arrow-down.png");
  background-size: 15px 10px;
  background-repeat: no-repeat;
  background-position: 90% center;
  border: none;
  background-color: transparent;
}

.form-date-input select {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.form-date-input input::placeholder {
  font-size: 20px;
  font-weight: 500;
}

select {
  border-radius: 12px;

  background-image: url("../assets/newimages/arrow-down.png");
  background-size: 15px 10px;
  background-repeat: no-repeat;
  background-position: 90% center;
  color: white;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

select::-ms-expand {
  display: none;
}

.form-date-input input {
  font-size: 20px;
  font-weight: 500;
}

.m-arrow-img {
  position: absolute;
  right: 20px;
  height: 10px;
  width: 10px;
}

.savings-div {
  text-align: start;
  height: 156px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 26px 24px;
  margin: 32px 0;
}

.savings-ammount-div {
  margin: 8px 0 12px 0;
}

.savings-ammount-div span {
  font-size: 40px;
}

.m-saving-text {
  text-align: left;
  font-weight: 300;
}

/* 
.range-wrap {

    width: 100%;
    margin: 50px 0 30px 0;
    position: relative;
}

#range {
    -webkit-appearance: none;
    height: 20px;
    width: 100%;

    background: linear-gradient(#622EC3 0%,
            #4D65DB 29.42%,
            #379AEE 69.26%,
            #53E9F6 100%);
    outline: none;
    opacity: 0.7;
    border-radius: 12px;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

#range::-webkit-slider-thumb {
    -webkit-appearance: none;
    z-index: 3;
    position: relative;
    appearance: none;
    width: 25px;
    height: 25px;
}

#selector {
    height: 27px;
    width: 27px;
    position: absolute;
    bottom: 4px;
    z-index: 2;
    left: 52%;
    border-radius: 50%;
    transform: translate(-50%);

}

.selectbtn {
    border-radius: 50%;
    height: 30px;
    width: 30px;

    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, white 40%);
    cursor: pointer;


}

.selectrangeval {
    height: auto;
    padding: 5px 15px;
    width: auto;
    border-radius: 14px;
    background-color: orange;
    position: absolute;
    left: -22px;
    bottom: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
     background: white;
}
.selectrangeval::after{
    content: "";
    border-top: 10px solid white;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    position: absolute;
    bottom: -9px;
    left:50%;
    transform: translate(-50%);
}

.selectrangeval p {
  font-style: regular;
   font-size: 12px;
    color: black;
    margin: 0px;
} */
.range-div-outer {
  margin: 20px 0;
}

/* sldier update  */

.range-slider {
  width: 99%;
  margin: 0 auto;
  position: relative;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}

#range {
  -webkit-appearance: none;
  width: 99%;
  border-radius: 15px;
}

#range:focus {
  outline: none;
}

#range::before,
#range::after {
  position: absolute;
  top: 2rem;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

#range::before {
  left: 0;
  content: attr(data-min);
}

#range::after {
  right: 0;
  content: attr(data-max);
}

#range::-webkit-slider-runnable-track {
  width: 100%;
  height: 1rem;
  cursor: pointer;
  animate: 0.2s;
  /* background: linear-gradient(
    90deg,
    #622ec3,
    #4d65db,
    #379aee,
    #53e9f6 var(--range-progress),
    #dee4ec var(--range-progress)
  ); */
  background: linear-gradient(
      90deg,
      #622ec3 3.05%,
      #4d65db 31.57%,
      #379aee 70.2%,
      #53e9f6 100%
    ),
    #ffffff;
  border-radius: 16px;
  border-radius: 1rem;
}

#range::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 0.25rem solid
    linear-gradient(90deg, #622ec3, #4d65db, #379aee, #53e9f6);
  box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  height: 22px;
  width: 22px;
  transform: translateY(calc(-50% + 8px));
}

#tooltip {
  position: absolute;
  top: -2.25rem;
}

#tooltip span {
  position: absolute;
  text-align: center;
  display: block;
  line-height: 1;
  padding: 0.425rem 0.95rem;
  border-radius: 15px;
  color: #000;
  /* border-radius: 0.125rem; */
  background: #fff;
  font-size: 0.9rem;
  left: 50%;
  top: -15px;
  width: max-content;
  transform: translate(-50%, 0);
}

#tooltip span:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #fff;
}

input[type="date"] {
  position: relative;
  width: 150px;
  height: 20px;
  color: white;
  width: 100%;
}

input[type="date"]:before {
  position: absolute;
  top: 3px;
  left: 3px;
  content: attr(data-date);
  display: inline-block;
  color: black;
}

/* input[type="date"]::-webkit-datetime-edit,
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
  display: none;
} */

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0px;
  right: 15px;
  color: black;
  opacity: 0;
  cursor: pointer;
  /* width: 100%; */
  z-index: 100;
}

/* range */

.dropdown-item {
  cursor: pointer;
  color: black !important;
}

.dropdown-item:hover {
  background-color: whitesmoke !important;
}

.period-item {
  margin-left: 7px;
  border-radius: 3px;
  padding: 5px 5px 0px;
  cursor: pointer;
  font-size: 15px;
}

.period-item.selected {
  background-color: #eee;
}

.date-display {
  letter-spacing: 0.02em;
  font-size: 18px !important;
}

.institution-dropdown {
  max-height: 400px;
  overflow-y: auto;
  position: absolute;
  display: block;
  top: 3%;
  right: 0;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.institution-dropdown-item {
  padding-left: 2.5rem !important;
  cursor: default !important;
}

.institution-dropdown-item label {
  color: black !important;
}

.institution-dropdown-item b {
  font-weight: 700;
}

.institution-dropdown-item input {
  margin-top: 3px;
}

.institution-dropdown-footer {
  position: sticky;
  bottom: 0;
  width: 100%;
}

.institution-dropdown-footer button.disabled {
  opacity: 0.3;
}

.text-red {
  color: red !important;
}

.manual-account-form .form-input-div input::placeholder {
  color: #ccc !important;
}

.manual-account-input-page .logo-img {
  width: 163px;
  margin-left: 19px;
}

.manual-account-input-page .tick-img {
  width: 25px;
  margin-top: 8px;
  float: left;
}

.manual-account-input-page .tick-label {
  margin-left: 7px;
  float: left;
  width: 462px;
  height: 74.13px;
  left: 231px;
  top: 554.16px;
  font-family: "Mulish";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 36px;
  color: #ffffff;
  opacity: 0.8;
}

.manual-account-input-page .auth-form-logo-left {
  overflow: scroll;
  justify-content: unset;
}

.manual-account-input-page .auth-fields-form {
  margin-top: 100px;
}

.manual-account-input-page .form-verify-message {
  width: 460px;
}

.manual-account-input-page .form-verify-message.expended-form {
  width: 650px;
}

.manual-account-input-page .manual-input-text {
  font-family: "Mulish";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  color: #0b2117;
  text-align: center;
  opacity: 0.75;
  mix-blend-mode: normal;
}

.manual-account-input-page .manual-input-title {
  width: 340px;
  height: 96px;
  left: 1270px;
  top: 398px;
  font-family: "Mulish";
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 48px;
  text-align: center;
  color: #0b2117;
}

.manual-account-input-page .form-verify-message-tex-after {
  background-color: rgba(0, 0, 0, 0.25) !important;
  height: 4px !important;
}

.manual-account-form .btn-group {
  padding: 5px;
  width: 100%;
  background: white;
}

.manual-account-form .btn {
  width: 150px !important;
  font-family: "Mulish", sans-serif !important;
}

.manual-account-form .btn-group button {
  font-size: 13px;
  width: 100px;
  height: 30px;
  float: left;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.manual-account-form .form-input-div input {
  background: rgba(11, 33, 23, 0.03);
  border: 1px solid rgba(11, 33, 23, 0.2);
  box-sizing: border-box;
  border-radius: 10px;
  color: #0b2117;
  height: 50px;
}

.manual-account-form .form-input-div input[type="date"] {
  height: 50px !important;
}

.manual-account-form .form-input-div select {
  width: 100%;
  height: 50px;
  background: rgba(11, 33, 23, 0.03);
  border: 1px solid rgba(11, 33, 23, 0.2);
  box-sizing: border-box;
  border-radius: 10px;
  color: rgba(11, 33, 23, 0.8);
}

.manual-account-form .form-input-div i {
  color: black;
}

.manual-account-form .manual-account-type button {
  font-size: 13px;
  width: 100px;
  height: 30px;
  float: right;
}

.manual-account-form .submit-btn i {
  color: black;
  margin-right: 10px;
}

.manual-account-form .form-input-div {
  display: block;
  text-align: start;
  font-size: 15px;
  margin-top: 20px;
  height: 100%;
}

.manual-account-form .form-input-div label {
  font-size: 13px;
  margin-bottom: 0.2rem !important;
}

.manual-account-form .form-input-div i {
  top: 55% !important;
}

.manual-account-form .form-input-div label.required::after {
  color: red;
  content: "*";
  margin-left: 3px;
}

.manual-account-form .apr-label {
  position: absolute;
  left: 40px;
  top: 17px;
  padding: 5px;
  background: white;
  font-size: 15px;
}

.manual-account-form .apr-content {
  border: 1px solid rgba(11, 33, 23, 0.2);
  border-radius: 15px;
  margin-top: 30px;
  padding: 0px 20px 20px;
}

.manual-account-form .delete-input {
  font-size: 30px;
  color: orangered;
  padding: 0px;
  display: flex;
  justify-content: end;
  align-items: end;
  margin-bottom: 10px;
}

.manual-account-form .add-input {
  font-size: 30px;
  color: green;
  padding: 0px;
  display: flex;
  justify-content: end;
  align-items: end;
  margin-bottom: 10px;
}

.manual-account-form .delete-input i {
  cursor: pointer;
}

.manual-account-form .add-input i {
  cursor: pointer;
}

.manual-account-form .disbursement-dates-label {
  position: absolute;
  left: 30px;
  top: 17px;
  padding: 5px;
  background: white;
  font-size: 13px;
}

.manual-account-form .disbursement-dates-content {
  border: 1px solid rgba(11, 33, 23, 0.2);
  border-radius: 15px;
  margin-top: 30px;
  padding: 0px 10px 10px;
}

.manual-account-delete-loading .load.container {
  height: 100% !important;
  width: 100% !important;
  position: relative;
}

@media screen and (max-width: 1260px) {
  .auth-form-form-right.special-right {
    width: 0% !important;
    padding: 0px !important;
  }

  .auth-form-logo-left.special-left {
    width: 100% !important;
  }
}
