:root {
  --primaryColor: #707070;
  --highlighter: #4b8ce8;
}
#popup-close-btn {
  color: var(--highlighter);
  background-color: transparent;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 15px;
  cursor: pointer;
  font-size: 0.85rem;
}
#mobile-no-otp-form{
  display: none  ;
}
#otp-form{
  display: none;
}
#select-college {
  display: hidden;
  width: 100%;
}
#signup-select-college {
  margin-bottom: 0px;
  background: #fff;
  color: black;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#select-year {
  width: 100%;
  height: 35px;
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#select-year:focus {
  border: none;
  outline: none;
}
.log_in-status {
  margin-left: 1rem;
  display: none;
}
.signup-form {
  display: none;
}
.login-form {
  display: block;
}
#select-college-list {
  width: 100%;
  background: #ffffff;
  min-height: 40px;
  max-height: 100px;
  overflow: hidden;
  overflow-y: scroll;
  margin: 0rem;
  padding: 0rem;
  display: none;
  border: 1px solid #ccc;
  margin-top: 5px;
  border-radius: 4px;
  overflow-y: scroll;
  background-color: #fff;
  z-index: 1;
}
#select-college-list > li {
  width: 100%;
  padding: 2px 10px;
  font-size: 0.85rem;
}
#login-signup-error-msg {
  color: red;
  text-align: center;
}
.popup_overlay {
  display: none;
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background: rgba(42, 92, 155, 0.75);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(9.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.login {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primaryColor);
}

.login-signup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  padding: 30px 40px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #fff 0 0 no-repeat padding-box;
  box-shadow: 3px 3px 4px rgb(0 0 0 / 16%);
}

.login-signup-box h2 {
  margin: 0 0 50px;
  padding: 0;
  color: var(--primaryColor);
  text-align: center;
}
.otp-form h2 {
  margin-bottom: 10px;
}
.otp-form p {
  margin-bottom: 60px;
  text-align: center;
  font-size: 1.2rem;
}
.login-signup-box .user-box {
  position: relative;
}
.user-box-checkbox {
  padding: 1rem 0rem;
  display: flex;
  padding-bottom: 0.25rem;
}
.accept-terms-and-conditions-label {
  margin-left: 0.5rem;
  color: var(--primaryColor);
}
.terms-and-conditions-link {
  color: var(--highlighter);
}
.terms-and-conditions-link:visited {
  color: var(--highlighter);
}
.accept-terms-and-conditions-checkbox {
  padding: 1rem;
  display: inline !important;
  width: unset !important;
  color: unset !important;
  padding: unset !important;
  margin: unset !important;
  margin-right: 10px !important;
  cursor: pointer;
}
.login-signup-box .user-box input {
  height: 30px;
  width: 100%;
  /* padding: 10px\\\ 0; */
  font-size: 16px;
  color: var(--primaryColor);
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
  padding-left: 5px;
  border-bottom: 0.1px solid #0a96c5;
}
.login-signup-box .user-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: 0.5s;
}

.login-signup-box .user-box input:focus ~ label,
.login-signup-box .user-box input:valid ~ label {
  top: -30px;
  left: 0;
  color: var(--primaryColor);
  font-size: 12px;
}
.submit-button {
  background-color: transparent;
  border: transparent;
  cursor: pointer;
}

.submit-button {
    height: 40px;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
    vertical-align: center;
    color: #fff;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    background: var(--highlighter) 0 0 no-repeat padding-box;
    border: none;
    border-radius: 5px;
    opacity: 1;
    cursor: pointer;
    line-height: 2px;
}

.submit-button:hover {
  background: var(--highlighter);
}
.submit-secondary-button{
  width: 100%;
  margin-top: 10px;
  background: #f2f8ff 0 0 no-repeat padding-box;
  border: 1px solid #4b8ce8;
  border-radius: 4px;
  color: #4b8ce8;
  line-height: 2px;
  cursor: pointer;
  height: 40px;
}
.submit-secondary-button:hover {
  background: #f2f8ff 0 0 no-repeat padding-box;
  border: 1px solid #4b8ce8;
  color: #4b8ce8;
}
.submit-button span {
  position: absolute;
  display: block;
}
.forgot-password {
  color: var(--highlighter);
  margin: 0rem;
}
.forgot-password-link {
  color: var(--highlighter);
  text-decoration: none;
  cursor: pointer;
}
.forgot-password-link:visited {
  color: var(--highlighter);
  text-decoration: none;
  cursor: pointer;
}
.switch-page-description {
  color: white;
  color: var(--primaryColor);
  margin-top: 1rem;
  text-align: center;
}
.switch-login-signup-btn {
  color: var(--highlighter);
  cursor: pointer;
}
.resend-otp-btn{
  color: var(--highlighter);
  cursor: pointer;
}
.otp-input-wrapper {
  width: 240px;
  text-align: left;
  display: inline-block;
  margin-bottom: 25px;
}
.otp-input-wrapper input {
  padding: 0;
  width: 264px;
  font-size: 32px;
  font-weight: 600;
  color: #3e3e3e;
  background-color: transparent;
  border: 0;
  margin-left: 12px;
  letter-spacing: 48px;
  font-family: sans-serif !important;
}
.otp-input-wrapper input:focus {
  box-shadow: none;
  outline: none;
}
.otp-input-wrapper svg {
  position: relative;
  display: block;
  width: 240px;
  height: 2px;
}

@media only screen and (max-width: 500px) {
  .login-signup-box {
    width: 275px;
  }
}
