/*   ------- 'Register' page design starts --------
  ------------------------------------------------------
----------------------------------------------------------   */

.register-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--background-color);
  gap: 2rem;
}

.registration-form-heading {
  text-shadow: var(--text-shadow-heading);
}

.form-input {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-control {
  display: flex;
}
.form-control label {
  font-size: 18px;
  width: 6rem;
  text-align: left;
  align-items: center;
  color: black;
}
.form-control input {
  text-align: center;
  width: 17rem;
  flex: 0.9;
  font-size: 16px;
  border: none;
  border-radius: 3px;
}

.login-btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-link {
  font-size: 16px;
  padding-right: 30px;
}

.login-link a {
  text-shadow: var(--text-shadow-heading);
  font-size: 18px;
  text-decoration: none;
}

.login-link a:hover {
  text-shadow: 1px 1px rgb(174, 213, 245);
  text-decoration: underline;
}

#login-submit-btn {
  height: 30px;
  margin-top: 7px;
  width: 70px;
  font-size: 17px;
  text-align: center;
  padding-bottom: 1px;
  font-weight: 800;
  text-shadow: 0.5px 0.5px rgb(180, 214, 242);
  border: none;
  border-radius: 3px;
  align-items: center;
  /* background-color:  rgb(174, 213, 245) ; */
}
#login-submit-btn:hover {
  text-shadow: 0.5px 0.5px rgb(32, 160, 239);
  cursor: pointer;
  border: none;
  box-shadow: 3px 2px 3px #1f3041;
  border-radius: 4px;
  width: 70px;
}
/* 'Register' page design ends here */
