html {
  font-family: Arial, Helvetica, sans-serif !important;
  background-color: #2C7C2C;
  -webkit-user-select: none; /* Safari */
  user-select: none;
}

header, footer {
  display: none;
}

.login-page-logo {
  width: 160px;
  height: 160px;
}

.login-page, .forgot-password-page, .forgot-username-page{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2C7C2C;
  color: #ffffff;
  min-height: 100vh;
}

.login-page-header {
  font-size: 17px;
  font-style: normal;
  font-weight: 510;
}

.slds-input-label {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  position: absolute;
	pointer-events: none;
	left: 0px;
	top: 0px;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

.login-username:focus~label,
.login-username:valid~label,
.submit-username:focus~label,
.submit-username:valid~label,
.submit-email:focus~label, 
.submit-email:valid~label{
	top: -16px;
  font-size: 12px;
}

.labelActive {
  top: -16px;
  font-size: 12px;
}

.group {
  position: relative;
  margin-bottom: 36px;
}

.slds-input{
  width: 100%;
  font-size: 17px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #F3F2F2;
  border-radius: 0;
  padding-left: 0;
  color: #ffffff;
}

.slds-input:focus, .slds-input:active, .slds-input:focus-visible {
  --slds-c-input-shadow: none;
  background-color: unset;
  color: #ffffff;
  border-color: #ffffff;
  outline: none;
}

::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
  color: #ffffff;
}

input:focus::placeholder {
  color: transparent;
}

.btn-group {
  display: flex;
  flex-flow: row-reverse;
  gap: 16px;
}

.login-btn, .submit-btn {
  background-color: #ffffff;
  border-radius: 14px;
  display: flex;
  width: 100%;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
  border: 0;
  color: #333E46;
}

.cancel-btn {
  background-color: #ffffff !important;
  border-radius: 14px;
  display: flex;
  width: 100%;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
  border: 0;
  color:#027EB9 !important;
}

.ok-btn {
  background-color: #ffffff !important;
  border-radius: 14px;
  display: flex;
  width: 100%;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
  border: 0;
  color:#333E46 !important;
}

.login-btn:disabled, .submit-btn:disabled {
  background-color: #DDDBDA;
  border-radius: 14px;
  display: flex;
  width: 100%;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
  border: 0;
  color: #969492;
}

.link-text {
  align-self: flex-start;
}

.under-line {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 35vh;
  margin-bottom: 30px;
}

.text-title {
  font-size: calc(24px + 1.5vw) !important;
  font-weight: 700;
  margin: 30px 0 30px 8px;
  text-align: center;
}

.text-detail {
  font-size: 16px;
  font-weight: 500;
}

.comm-section-container {
  background-color: #2C7C2C;
  padding: 0 16px !important;
}

.login-form, .loginPanel {
  width: 100%;
}

p {
  margin-top: 10px;
}

@media screen and (min-width: 576px) {
  .login-form, .ok-btn, .loginPanel {
    width: 400px;
  }
}