.outer-container {
  /* padding: 5% 0; */
  min-height: 100vh;
  background-image: url(../../../image/student_login_bg.png);
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
}

.inner-container {
  width: 400px;
  padding: 24px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.form .input-box {
  width: 100%;
  margin-top: 5px;
}

.form .column {
  display: flex;
  column-gap: 15px;
}

.form :where(.input-box input) {
  position: relative;
  height: 40px;
  width: 100%;
  outline: none;
  font-size: 14px;
  color: #707070;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 8px;
}

.form-label {
  text-align: left;
  color: grey;
  font-weight: bold;
  font-size: 14px;
  display: block;
}

.form-control {
  font-size: 14px;
  padding: 10px;
}

.form button {
  width: 100%;
}

.toggle-password {
  cursor: pointer;
}

.input-group-text {
  border-left: none;
  background: transparent;
}

.form-check {
  font-size: 14px;
}

#otp_count {
  color: #0f3e70;
  font-size: 13px; 
}