@import url('../../assets-custom/root.css');

.max-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.oneSectionPage{
  display: flex;
  height: 58vh;
}

#loginMessageMessage {
  color: white;
  margin-bottom: 10px;
  text-align: center;
}

.login-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 65px;
  margin-bottom: 150px;
  max-width: 1196px;
  margin-inline: auto;
  padding-inline: 50px;
}
.sign-in-page-form-container {
  padding: 42px;
  border-radius: 20px;
}

 .form-control::placeholder {
    color: var(--ea-primary-color); /* Replace with your desired color code */
}

.sign-in-title {
  font-family: var(--title-font);
  color: var(--text-color-2nd);
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.sign-in-paragraph {
  font-family: var(--subtitle-paragraph-font);
  color: var(--text-color-2nd);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.login-right-part {
  /* width: 485px; */
  border-radius: 5px;
  background-image: url('../../assets-custom/img/signin/login-background-img.svg');
  background-size: cover;
  padding-top: 85px;
  padding-bottom: 50px;
  padding-inline: 50px;
}

.login-right-part-content {
  /* height: 500px; */
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff82;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 45px;
  padding-inline: 45px;
}

.login-right-part-title {
  color: var(--text-color);
  font-family: var(--title-font);
  font-size: 45px;
  font-style: normal;
  line-height: 140%;
  letter-spacing: 0.45px;
}

.sign-in-page-submit-btn button {
  border-radius: 126px;
}
.form-control {
  border: 1px solid var(--primary-color);
  border-radius: 0 !important;
  background-color: var(--ea-background-color);
}

.passwordInputDiv .form-control{
  background: white;
}

.form-control:focus {
  border-color: transparent; /* Change to whatever color your input field's border is */
  box-shadow: none; /* Remove any box shadow */
  background-color: var(--ea-background-color);
  color: var(--text-color);
}
.form-group {
  border: 1px solid var(--ea-primary-color);
  padding-bottom: 4px;
  border-radius: 13px;
  padding-inline: 14px;
  padding-block: 10px;
  width: 364px;
}
.sign-in-img-input-logo img {
  width: 24px;
  height: 22px;
}

.remember-me-lost-psw-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 31px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color-2nd);
  font-family: var(--subtitle-paragraph-font);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-left: 28px;
}

.custom-checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  margin-left: -25px;
}

.custom-checkbox:checked {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-checkbox:checked::before {
  content: '✔';
  font-size: 14px;
  color: var(--text-color);
}

.lost-psw {
  color: var(--text-color-2nd);
  font-family: var(--subtitle-paragraph-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.lost-psw:hover {
  color: var(--text-color);
}

.login-btn {
  width: 364px !important;
  height: 52px !important;
  font-family: var(--subtitle-paragraph-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.lost_password {
  margin-block: 100px;
}
.email-reset-psw {
  border: 1px solid black;
  background-color: white;
}

.email-reset-psw:focus {
  border: 1px solid var(--ea-primary-color);
}

.lost_password-text {
  color: white;
  margin-top: 15px;
}

.lost_password-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.ea-primary-color {
  color: var(--ea-primary-color) !important;
}

.reset-password-btn {
  border-radius: 126px;
}

.btn-lost-password {
  background: var(--btn-lostpassword-background-color);
  color: var(--btn-lostpassword-text-color);
}

.reset-password-div {
  padding: 0px;
}

/* responsive  */

@media (max-width: 1180px) {
  .login-section {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .oneSectionPage{
    height: initial;
  }
  .main-logo-small-screens {
    top: 0px;
  }

  .navbar {
    margin-top: 10px;
  }
}

@media (max-width: 1067px) {
  .sign-in-page-form-right-image {
    margin-left: 0;
  }
  .sign-in-page-form-container {
    left: -8px;
    top: 100px;
  }
  .sign-in-form-img-container {
    margin-bottom: 100px;
    justify-content: center;
  }
  .sign-in-section {
    justify-content: center;
    max-width: auto !important;
  }
  .sign-in-page-form-right-image {
    width: auto;
  }

  .sign-in-img {
    display: none;
  }
}
@media (max-width: 582px) {
  .sign-in-page-form-right-image {
    width: 320px;
    height: 400px;
  }
  .sign-in-form-img-container {
    justify-content: flex-end;
  }
  .sign-in-page-form-container {
    left: 14px;
    top: 32px;
  }
}

@media (max-width: 482px) {
  .login-right-part {
    display: none;
  }

  .form-group {
    width: 300px;
  }

  .remember-me-lost-psw-container {
    align-items: flex-start;
  }

  .login-btn {
    width: 300px !important;
  }
}

@media (max-width: 991px) {
  .login-right-part {
    width: 90vw;
  }
}
