/* @import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;200;300;400;500;600;700;800;900&display=swap"); */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
}

:root {
  --primary-color: #0096a3;
  --secondary-color: #EE5A23;
  --text-color: #010101;
  --textgrey-color: #797a7b;
  --lightgrey-color: #8F98AE;
  --border-color: #E3E3E3;
  --border-bgcolor: #E8F0FE;
  --tab-bgcolor: #A3DCE9;
  --bs-blue: #0d6efd;
  --bg-white: #ffffff;
  --text-black: #000000;
  --text-white: #ffffff;
  --primaryborder-color: #0096a3;
  --clientform-height: 50px;
}

/* login universal css starts here */

.login-container {
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.login {
  width: 100%;
  overflow: hidden;
}

.login h3 {
  font-size: 18px;
  color: var(--lightgrey-color);
  font-weight: 600;
}

.login .smalltext {
  color: var(--primary-color);
}

.login :is(.form-input, .form-control, .form-select) {
  padding: 8px 50px;
  background: var(--border-bgcolor);
  border-radius: 8px;
  display: flex;
  color: var(--textgrey-color);
  border: 1px solid var(--border-color);
  font-weight: bold;
  align-items: center;
}

.login .form-control {
  padding-inline: 16px;
}

:is(.login, .clientform-container) label {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.login .form-input input {
  border: none;
  background-color: transparent;
  width: 100%;
  outline: none;
}

.forgot-password {
  color: var(--bs-blue);
}

/* login universal css ends here */

/* background image starts here */

.login-rightsection {
  background-image: url(../images/bg-right-side.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: -1;
  height: 100%;
}

/* background image starts here */

/* tabs starts here */

.login-container .nav-tabs {
  display: none;
}

.login-container .tab-pane {
  padding-inline: 30px;
  display: block;
  opacity: 1;
  align-content: center;
}

/* tabs ends here */

/* left section starts  */
/* login form starts starts  */

.login-form {
  width: 100%;
  max-width: 500px;
  z-index: 2;
}

.login-form button.primarybtn {
  font-size: 20px;
  padding: 12px;
  max-width: 200px;
  background: linear-gradient(90deg, #006471 0%, #008E9B 100%);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.25);
  border: none;
}

/* login form ends here  */
/* left section ends here  */

/* stepper-container and right section starts here */
/* right section heading starts here */

.rightsection-heading h2 {
  color: var(--text-white);
}

.rightsection-heading p {
  color: var(--text-white);
  letter-spacing: .45px;
}

/* right section heading ends here */
/* stepper starts here */

.stepper-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.steps {
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0px auto;
  margin-bottom: 12px;
}

.steps .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--lightgrey-color);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  background: var(--bg-white);
  border: 4px solid var(--border-color);
  transition: all 200ms ease;
  transition-delay: 0s;
  z-index: 2;
}

.steps .circle.active {
  transition-delay: 100ms;
  border-color: var(--primaryborder-color);
  color: var(--primary-color);
}

.steps .circle.completed::before {
  content: "";
  background-image: url(../images/Animation\ -\ 1734531536762.gif);
  width: 100px;
  height: 100px;
  position: absolute;
}

.steps .progress-bar {
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--bg-white);
  z-index: 1;
}

.progress-bar .indicator {
  position: absolute;
  height: 100%;
  width: 0%;
  background: var(--primaryborder-color);
  transition: all 500ms ease-in-out;
}

.buttons {
  display: flex;
  gap: 20px;
  padding-block: 12px;
}

.buttons :is(.tabbtn, .submitbtn) {
  padding: 8px 25px;
  background: var(--secondary-color);
  border: none;
  border-radius: 8px;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: all 200ms linear;
  width: 100%;
  max-width: 130px;
}

.buttons button:active {
  transform: scale(0.97);
}

.buttons .prebtn {
  background-color: var(--bg-white);
  color: var(--text-color);
}

.buttons button:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.submitbtn {
  display: none;
}

.stepper-container :is(h4, label, .helpertext-container span, .step-helptext p) {
  color: var(--text-white);
}

.stepper-container h4 {
  text-align: left;
}

.step-helptext {
  top: 50%;
  transform: translateY(6px);
}

/* stepper ends here */
/* stepper form starts here */

.clientform {
  display: none;
  height: calc(100vh - 400px);
  overflow: auto;
  overflow-x: hidden;
}

.clientform.active {
  display: block;
}

.clientform-container label {
  color: var(--text-white);
}

.login .clientform-container select {
  appearance: auto;
  padding-inline: 16px;
}

.login .clientform-container {
  overflow: auto;
  overflow-x: hidden;
}

.login .clientform-container :is(.form-control, select) {
  color: var(--text-black);
  font-weight: 500;
  background-color: var(--bg-white);
}

.loginform #password-error {
  color: #D32F2F;
}

.signupform #email-error {
  color: #D32F2F;
}
span{
  color:red;
}
/* stepper form ends here */
/* stepper-container and right section ends here */


/* Fixing the error issues */


.loginforminput-container {
anchor-name: --my-anchor;
}

#email-error , #password-error {
  position: absolute;
  position-anchor: --my-anchor;
    bottom: -20px;
    left: 8px;
    font-weight: 500;
    font-size: 13px;
}

.login-page-logo img{
  max-width: 200px;
}