#loginContainer {
  width: 100%;
  height: 100vh;
  background-color: var(--light2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#collegeLogo {
  width: 150px;
  margin-bottom: 10px;
  /* border: 4px solid #354052; */
  border-radius: 50%;
  padding: 4px;
}

#loginform {
  width: 300px;
  padding: 10px;
  background-color: var(--light3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--accentGreen);
}

#loginform input[type="text"],
#loginform input[type="password"] {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 100%;
  height: 40px;
  background: var(--light1);
  margin-bottom: 5px;
  border: 1px solid var(--dark3);
  border-radius: 5px;
  padding: 1%;
  color: #000;
  text-align: center;
  direction: ltr;
  font-size: clamp(0.75rem, 0.7325rem + 0.08vw, 0.8125rem);
  /* font: 14px droid arabic kufi; */
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
  box-shadow: 0 0 5px var(--dark3);
  border: 1px solid var(--dark3);
}

#password-reset {
  font-size: 11px;
  text-align: center;
  color: var(--accentGreen);
}

#captcha {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  /* margin-bottom: 8px; */
}

#captchaImage {
  width: 250px;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  margin-bottom: 4px;
}

#imgCaptcha {
  /* height: 40px; */
  /* margin-bottom: 4px; */
  border-radius: 3px 0px 0px 3px;
}

#refreshCaptcha {
  width: 45px;
  height: 50px;
  margin-bottom: 0px;
  font-size: 22px;
  border-radius: 0px 3px 3px 0px;
}

.wdth250 {
  width: 250px !important;
}

hr.shadow-hr {
  border: none;
  height: 20px;
  width: 250px;
  height: 10px;
  /* background-color: #ff00003b; */
  border-bottom: 1px solid var(--accentGreen);
  box-shadow: 0 10px 20px -20px var(--accentGreen);
  margin: 0px auto 6px;
}

.btn {
  background-color: var(--primary);
  border-radius: 7px;
  font-size: clamp(0.75rem, 0.7325rem + 0.08vw, 0.8125rem);
  color: var(--light3);
  padding: 0px;
  margin-bottom: 5px;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
  border: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
