@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.box {
  width: 100%;
  /*height: 100vh;*/
  height: auto;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  user-select: none;
}

.form {
  width: 360px;
  min-width: 360px;
  min-height: 400px;
  padding: 32px 32px 0 32px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.form img {
  display: block;
  margin: auto;
}

.form-title {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 20px;
}

.form-group {
  height: 48px;
  margin-bottom: 20px;
  position: relative;
}

.form-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: 1px solid #a1a1a1;
  outline: none;
  padding: 16px;
  border-radius: 3px;
  z-index: 1;
}

.form-label {
  position: absolute;
  left: 13px;
  top: 13px;
  color: #a1a1a1;
  background-color: white;
  padding: 0 6px;
  font-size: 14px;
  transition: 0.3s;
}

.form-control:focus+.form-label {
  top: -10px;
  z-index: 10;
  color: #1b66c9;
  font-weight: 500;
}

.form-control:focus {
  border: 1px solid #1b66c9;
}

.form-control:not(:focus):valid+label {
  top: -10px;
  z-index: 10;
}

.form-control2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: 1px solid #a1a1a1;
  outline: none;
  padding: 16px;
  border-radius: 3px;
  z-index: 1;
  color: black;
}

.form-label2 {
  position: absolute;
  left: 13px;
  top: -10px;
  color: #1b66c9;
  background-color: white;
  padding: 0 6px;
  font-size: 14px;
  z-index: 99;
  /*transition: 0.3s;*/
}

.showLabel {
  font-size: 14px;
}

.bottom-box {
  display: flex;
  justify-content: left;
  align-items: center;
  /*margin-top: 35px;*/
}

.bottom-box a {
  color: #1b66c9;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.fxcenter {
  display: flex;
  align-items: center;
  justify-content: right;
}

.fxcenter a {
  color: #1b66c9;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 14px;
  font-weight: 500;
}

.form-button {
  display: block;
  padding: 10px 42px;
  border: none;
  background-color: #1b66c9;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
}

.form-button:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.15);
}

.hide {
  font-size: 14px;
  display: none;
}

.show {
  display: block;
}

.ninput {
  /*font-size: 1rem;*/
  padding: 4px 10px;
  width: 96%;
  font-size: 15px;
  border: 0;
  border-radius: 15px;
  outline: none;
  /*padding-left: 10px;*/
  background-color: rgb(233, 233, 233);
}

.qinput {
  /*font-size: 1rem;*/
  padding: 4px 10px;
  width: 80px;
  font-size: 15px;
  border: 0;
  border-radius: 15px;
  outline: none;
  /*padding-left: 10px;*/
  background-color: rgb(233, 233, 233);
}