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

.login-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-label {
  text-align: left; 
  color: grey;
  font-weight: bold; 
  font-size: 14px;
  display: block; 
}

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

.form-check a button {
  border: none;
  background: none;
  color: #007bff;
  padding: 0;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.form-check a button:hover {
  color: #0056b3;
}

.captcha-container input {
  width: calc(50% - 5px); 
}

.captcha-image-refresh {
  width: calc(50% - 5px); 
}

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

.captcha-image-refresh button {
  padding: 0; 
  border: none; 
  background: none; 
  cursor: pointer; 
}

.captcha-image-refresh button:hover {
  background: none;
  opacity: 0.8; 
}

.login-buttons button {
  width: calc(50% - 5px);
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-password{
  cursor: pointer;
}

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