@charset "UTF-8";
.body {
  background: linear-gradient(203deg, #DEEAE8 0%, #DBF9F7 100%);
  min-height: 100vh;
  margin: 0;
}

.login .content {
  width: 500px;
  margin: 40px auto 40px auto;
  padding: 2rem 2rem;
  border-radius: 12px;
  background: #FFF;
  align-self: stretch;
  overflow: hidden; /* Prevent content overflow */
}
.login .content .login-form .form-group {
  margin-bottom: 16px;
}
.login .content .login-form .form-group input {
  border-radius: 8px;
  border: 1px solid var(--Color-Monochrome-Cool-Grey-5, #DEE1E5) !important;
  background: var(--White, #FFF) !important;
}
.login .content .login-form .form-group input::placeholder {
  color: #888D95;
}
.login .content .login-form .form-check-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 2px solid #ccc;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-bottom: 0;
  margin-right: 5px;
}
.login .content .login-form .form-check-input:checked {
  background-color: #033839;
  border: 2px solid #033839;
}
.login .content .login-form .form-check-input:checked::after {
  content: "✓"; /* Checkmark symbol */
  font-size: 12px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the checkmark */
}
.login .content .login-form .rememberme.check {
  display: inline-flex;
  align-items: center;
}
.login .copyright {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.login button {
  border-radius: 20px;
  border: none !important;
  color: #ffffff !important;
}
.login .invalid-feedback {
  color: #DB3532;
  margin: 10px 0 0;
  text-align: center;
  padding-bottom: 5px;
}
.login .green {
  background-color: #033839 !important;
  border-radius: 8px;
}

/* Two-Factor Authentication Verification Page Styles */
.login .content.twofa-content {
  min-width: 554px;
  padding: 30px;
}

.login .twofa-form {
  width: 100%;
}

.twofa-title {
  color: #033839;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin: 16px;
}

.twofa-subtitle {
  color: #22272A;
  font-size: 14px;
  text-align: center;
  margin: 20px 0;
  line-height: 20px;
}

.twofa-input-group {
  margin-bottom: 24px;
}

.twofa-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.twofa-link {
  color: #033839;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.twofa-link:hover {
  color: #02292a;
  text-decoration: underline;
}

/*# sourceMappingURL=login.style.css.map */
