.content-center-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
.sign-up-title, .login-title {
    color: var(--primary-trusted-blue);
}
.content-center-wrapper {
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
}
.form-group {
    padding-bottom: 15px;
}
.form-btn {
    width: 100%;
    background-color: var(--secondary-bright-sky);
    padding: 10px;
    border-radius: 6px;
    color: #000000;
    font-weight: bold;
    text-align: center;
    border: none;
    outline: none;
}
.form-btn:hover {
    background-color: var(--white);
    color: var(----secondary-bright-sky);
    border: 1px solid var(--secondary-bright-sky);
}

/* Verify OTP Section */
.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}
.otp-inputs input {
  width: 45px;
  height: 55px;
  font-size: 22px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}
.otp-inputs input:focus {
  border-color: #007bff;
}
.verify-otp-wrapper {
    max-width: 25%;
}



/* Media Queries */
@media screen and (max-width: 767px) {
    .verify-otp-wrapper {
        max-width: 100%;
    }
    .otp-inputs input {
        width: 35px;
        height: 45px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .verify-otp-wrapper {
        max-width: 60%;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1400px) {
    .verify-otp-wrapper {
        max-width: 36%;
    }
}
