@charset "UTF-8";
#rndloginreg-form {
  width: 100%;
  margin-top: 20px;
  padding: 0 20px;
  background-color: var(--global--color-white);
}
@media (max-width: 1680px) {
  #rndloginreg-form {
    padding: 0 10px;
  }
}
#rndloginreg-form .form-instruction {
  margin-bottom: 20px;
}
#rndloginreg-form .form-row {
  position: relative;
  margin-bottom: 25px;
  text-align: left;
}
#rndloginreg-form .form-row a {
  color: var(--global--color-turquoise);
  font-weight: 600;
  text-decoration: none;
}
#rndloginreg-form .form-row.forget-password {
  text-align: center;
  margin-bottom: 0;
}
#rndloginreg-form .form-row.align-right {
  float: right;
}
#rndloginreg-form .form-row .column-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  /* Media query for screens smaller than 1680px */
}
@media (max-width: 1680px) {
  #rndloginreg-form .form-row .column-container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#rndloginreg-form .form-row .column-container .column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /* Media query for screens smaller than 1680px */
}
@media (max-width: 1680px) {
  #rndloginreg-form .form-row .column-container .column {
    margin-bottom: 25px;
  }
}
#rndloginreg-form .form-row .column-container .column:last-child {
  margin-right: 0;
  /* Media query for screens smaller than 1680px */
}
@media (max-width: 1680px) {
  #rndloginreg-form .form-row .column-container .column:last-child {
    margin-bottom: 0;
  }
}
#rndloginreg-form .form-row .wrapper {
  width: 95%;
  margin: 0 auto;
}
#rndloginreg-form .form-row .login-username {
  display: block;
}
#rndloginreg-form .form-row label {
  color: var(--global--color-turquoise);
}
#rndloginreg-form .form-row .field-instruction {
  font-size: 0.9rem;
  margin: 5px;
}
#rndloginreg-form .form-row .field-instruction ul {
  list-style-type: none;
  margin: 10px 0;
  padding: 0;
}
#rndloginreg-form .form-row .field-instruction ul li {
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1;
}
#rndloginreg-form .form-row .field-instruction ul li::before {
  content: "•"; /* Unicode character for bullet (•) */
  color: #333;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
#rndloginreg-form .form-row.email .field-instruction {
  float: right;
}
#rndloginreg-form input[type=text],
#rndloginreg-form input[type=email],
#rndloginreg-form input[type=password] {
  width: 100%;
  padding: 10px 8px 10px 8px;
  color: var(--global--color-turquoise);
  border: none;
  border-radius: 6px;
  background-color: var(--global--color-gray) !important;
}
#rndloginreg-form input[type=text]:focus,
#rndloginreg-form input[type=email]:focus,
#rndloginreg-form input[type=password]:focus {
  outline: none;
}
#rndloginreg-form input[type=submit] {
  background-color: #247088;
  color: #ffffff;
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 10px 8px 10px 8px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
#rndloginreg-form input[type=submit]:hover {
  background: #1f5f74 radial-gradient(circle, transparent 1%, #1f5f74 1%) center/15000%;
}
#rndloginreg-form .notification_message {
  color: var(--global--color-red);
}
#rndloginreg-form .password-field {
  position: relative;
  background-color: var(--global--color-gray) !important;
  border-radius: 6px;
}
#rndloginreg-form .password-field input {
  width: 90%;
}
#rndloginreg-form .icon {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
#rndloginreg-form .icon.eye {
  width: 20px;
  height: 15px;
  background-image: url(../images/icon_eye.png);
}
#rndloginreg-form .icon.eye-slash {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon_eye_slash.png);
}
#rndloginreg-form .toggle-password {
  position: absolute;
  top: 50%;
  right: 10px; /* Adjust as needed to position the eye icon */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
#rndloginreg-form .toggle-password i {
  color: #999;
  line-height: 1; /* Ensures the icon is vertically centered */
}
#rndloginreg-form .error-message {
  font-size: 0.85rem;
  color: var(--global--color-red);
}
#rndloginreg-form .link-button.top {
  margin-bottom: 50px;
}
#rndloginreg-form .link-button a.go-to {
  text-decoration: none !important;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
#rndloginreg-form .link-button a.go-to::before {
  content: "";
  display: inline-block;
  background-image: url(../images/arrow-back.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 5px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.password-reset-error {
  width: 100%;
  margin-top: 20px;
  padding: 0 20px;
}
@media (max-width: 1680px) {
  .password-reset-error {
    padding: 0 10px;
  }
}
