.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;
}

.outer-container.d-flex.justify-content-center.align-items-center {
}

.signup-container {
  width: 500px;
  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 :where(.input-box input, .select-box) {
  position: relative;
  height: 40px;
  width: 100%;
  outline: none;
  font-size: 14px;
  color: #707070;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 8px;
}

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

.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
  background: transparent;
}

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

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

.captcha-image-refresh img {
  height: 40px;
  width: 100%;
  background: #f3f4f0;
  margin-right: 10px;
  /* padding: 10px; */
}

.form button {
  width: 100%;
}

.toggle-password{
  cursor: pointer;
}

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

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