
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px;
}

.login-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  width: 600px;

  text-align: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 180px;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 20px;
}

.steps {
  margin-bottom: 20px;
}

.steps span {
  font-size: 0.9rem;
  color: #000;
  font-weight: bold;
}

.input-box {
  margin-bottom: 15px;
}

.input-box label {
  display: block;
  text-align: left;
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 5px;
  font-family: "Roboto", sans-serif;
}

.phone-input {
  display: flex;
}

.phone-input input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
  width: 30%;
  font-size: 1rem;
}

#phone {
  width: 70%;
}

.captcha {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.captcha img {
  margin-left: 10px;
}

.btn {
  background-color: #003397;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
}

.btn:hover {
  background-color: #000;
  color: white;
}

p {
  margin: 20px 0 10px;
  font-size: 1rem;
  color: #000;
}

.signup-btn {
  background-color: #003397;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.signup-btn:hover {
  background-color: #003397;
}

.login_steps {
  min-height: 50px;
  height: auto;
  width: auto;
  background: grey;
  color: #fff;
  text-align: center;
  line-height: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  padding-top: 5px;
  font-weight: bold;
  background: #003397;
  font-family: "Roboto", sans-serif;
}

span.right_arrow {
  float: right;
  position: relative;
  top: 10px;
  right: -10px;
  font-weight: bold;
}

.login-head {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
}

.login-steps-text {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
}

.input-label{
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: black;
    font-weight: 600;
    text-align: start;

}

.radio-text {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: black;
    font-weight: 400;
    text-align: start;

}

.form-control {
    border: none;
}

.col-12 {
    border-bottom: 1px solid #565656;
}

.col-3{
    border-bottom: 1px solid #565656;
}

.col-9{
     border-bottom: 1px solid #565656;
}

.input-group{
    border-bottom: 1px solid #565656;
}

.row{
        --bs-gutter-x: 0.3rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .form-control{
            font-size: 14px;
            padding: 10px 5px;
    }
    .card {
        width: 310px;
    }
  .captcha-class {
    font-size: 6px;
  }
  .login-head {
    font-size: 12px;
  }
  .member-class {
    font-size: 12px;
  }
  .login-box {
    width: 400px;
    padding: 25px;
  }

  .steps span {
    font-size: 0.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .phone-input input {
    font-size: 0.9rem;
  }

  .btn,
  .signup-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .steps {
    font-size: 0.7rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  .phone-input input {
    font-size: 0.8rem;
  }

  .btn,
  .signup-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}
