.register{
    text-align: center;
    padding: 50px 0px;
    position: relative;
    min-height: 615px; /* Set height to 75% of the viewport */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../images/banner1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.register-form {
    background: rgb(183 173 173 / 50%);
    padding: 0px;
    border-radius: 22px 22px 8px 8px; /* top-left, top-right, bottom-right, bottom-left */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
	max-width: 640px;
    margin: auto;
    /* height: 70vh; */
}
.register-form .h3{
    padding: 10px 40px;
    border-radius: 30px;
    margin:0px;
    margin-bottom: 40px;
    font-weight: bold;
    /* font-size:44px; */
    background-color: #756f6f;
    color: #fff;
    text-align: center;
    vertical-align: middle;
}
.registration-form {
    display: flex;
    flex-direction: column;
    padding:30px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 24px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #007bff;
}

button {
    background-color: #b01f35;
    color: #fff;
    border: none;
    padding: 10px 20px; /* Adjust padding for smaller screens */
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px; /* Adjust font size for smaller screens */
    text-decoration: none;
    margin: 10px auto; /* Center the button horizontally */
  }
  
  @media (min-width: 768px) { /* Adjust breakpoint as needed */
    button {
      padding: 10px 40px;
      font-size: 26px;
    }
  }

button:hover {
    background-color: #b01f35;
}

.register a{
    color:#000;
    text-decoration: underline;
    font-weight: bold;
}
#btn_otp[disabled]{
    background-color: #756f6f;
}
#btn_register[disabled]{
    background-color: #756f6f;
}
