:root {
  --primary-color: rgb(11, 78, 179);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: Montserrat, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  min-height: 100vh;
  background-color: white;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

input {
  display: block;
  width: 100%;
  padding: 13px;
  font-size: 14px;
  border: 1px solid #989797;
  border-radius: 0.5rem;
}

input#username {
padding: 14px;
font-size: 14px;
}
input#email {
  padding: 14px;
  font-size: 14px;
  }
  input#phone {
    font-size: 14px;
    }
    
  
.width-50 {
  width: 50%;
}

.ml-auto {
  margin-left: auto;
}



.form {
  background-color: #ffffff;
  padding: 1.5rem 3rem;
  border-radius: 0.5rem;
  z-index: 1;
}

.form-step {
  display: none;
  transform-origin: top;
  padding-top: 35px;
  animation: animate 0.5s;
}

.form-step-active {
  display: block;
}

.progressbar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  margin-bottom: 2rem;
}

.progressbar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: #dcdcdc;
  z-index: -1;
}

.progress {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 0%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.3s;
}
.fori{
  padding: 20px 0px;
}
.input-group{
  padding: 12px 0px;
}
.progress-step {
  width: 88%;
  height: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10%;
  background-color: #c6c6c6;
  transition: 0.3s;
}

.progress-step::before {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + 0.5rem);
  font-size: 13px;
  color: #666;
}

.progress-step-active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #f3f3f3;
}

.progress-step-completed {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
}

@keyframes animate {
  0% {
      transform: scale(1.2, 1.2);
      opacity: 0;
  }
  100% {
      transform: scale(1, 1);
      opacity: 1;
  }
}

.btns-group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  background: rgb(0,87,133);
  color: white;
background: radial-gradient(circle, rgba(0,87,133,1) 0%, rgba(0,70,108,1) 100%);
  gap: 1.5rem;
}

.buttonc {
  margin-top: 9px;
  background: -webkit-linear-gradient(right, #4581b2, #429efa, #4568b2, #4285fa);
  color: white;
  width: 100%;
  text-align: center;
  height: 50px;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.buttonc a{
  color: white;
}
.btn {
  padding: 0.75rem;
  display: block;
  text-decoration: none;
  color: #f3f3f3;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}


.phoneflag {
  flex-direction: column;
}
textarea{
  border: 0.8px solid gray;
}
#otp-inputs {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}
.col-12.col-md-7.slider1 {
  padding-left: 90px;
  padding-bottom: 90px;
    padding-right: 90px;
}

.otp-input {
  width:100%;
  height:  60px;
  text-align: center;
  font-size: 17px;
  border: 1px solid #4d4d4d;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}
.error-message {
  color: red;
  display: none;
  font-size: 0.875rem; /* Optional: Adjust size as needed */
  margin-top: 0.25rem; /* Optional: Adjust margin as needed */
}

.col-12.col-md-7.slider1 {
  background-color: #ffffff;

}
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 10px;
}
.nxt1 {
  background-color: #005294;
  color: white;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.otp-input:last-child {
  margin-right: 0;
}
.slider1{
  background-color: white;
}
.otp-message {
  margin-top: 20px;
  padding: 10px;
  background-color: #e0f7fa; /* Light blue background */
  border-radius: 5px;
  color: #00796b; /* Darker text color */
  font-size: 14px;
  text-align: center;
}



@media (min-width:330px) AND (max-width:750px){
  .progress-step {
    width: 20px;
    height: 20px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #c6c6c6;
    transition: 0.3s;
}
.slider1{
  display: none;
}
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 98%;
  }
}


