.container {
  width: 100%;
  height: 100vh;
  max-width: none;
  margin: 0;
  padding: 0;
  background-image: url(../img/login_background.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.container .sub-container {
  width: fit-content;
  margin: 0 auto;
}

.container .sub-container img.login-logo {
  margin-top: 26vh;
  width: 314px;
}

.container .sub-container .login-card {
  padding: 40px 25px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  margin-top: 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.container .sub-container .login-card .avatar {
  width: 120px;
  height: 120px;
  background-color: #d7d8d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container .sub-container .login-card form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 264px;
}

.password-group {
  position: relative;
}

.container .sub-container .login-card form .controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
}

.container .sub-container .login-card form .btn-sm-txt {
  border-color: transparent !important;
  background: #2a6287;
  width: 100%;
  height: 40px;
  font-size: 16px;
}
.container .sub-container .login-card form .btn-sm-txt:hover {
  background: #3e92cc;
}

/**/

.form-control {
  background-color: #fff;
  border-radius: 2px;
  padding: 8px 12px 8px 30px;
  border: 1px solid #d9d9d9;
  color: rgba(0, 0, 0, 0.8);
  height: 22px;
}
.form-control::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

#email-input {
  background: url(../icon/user.svg) no-repeat scroll 8px 10px;
  background-size: 16px;
  background-color: #fff;
  width: 220px;
}

#password-input {
  width: 240px;
  padding-left: 10px;
}

#eye-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  cursor: pointer;

  position: absolute;
  right: 10px;
  top: 12px;

  background-image: url(../icon/eye-invisible.svg);
  background-repeat: no-repeat;
}

.forgot-password {
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}

.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  background-color: #fff;
}
.custom-checkbox:hover input ~ .checkmark {
  background-color: #eee;
}
.custom-checkbox input:checked ~ .checkmark {
  background-color: #3e92cc;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.signup-link {
  color: #eee;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}
.signup-link:hover {
  text-decoration: underline;
}
