/* ---------------------------------------------------------------- */

a {
  text-decoration: none; /* Remove underline */
  color: #166ee1; /* Default link color */
  font-weight: normal; /* Make text bold */
}

a:hover {
  color: #166ee1; /* Change color on hover */
  text-decoration: underline;
}

hr {
  border: none; /* Remove default border */
  height: 1px; /* Set height of the line */
  background-color: #232a34; /* Set background color to grey */
  margin: 10px 0 30px 0; /* Add margin above and below the line */
}

/* ACCOUNT LOGIN */
.container-account-login {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.my-form {
  background: #fff;
  padding: 30px 50px;
  border-radius: 0px;
  width: 600px;
}

.form-title {
  text-align: center;
  margin-bottom: 20px;
}

.form-title h1 {
  font-size: 2.8em;
}

.form-title-gap {
  margin-top: 0px;
}

.my-form p {
  padding-top: 10px;
}

.account-holder {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.row {
  gap: 1vw !important;
}

.row-height-switch-options {
  font-size: 0.9em;
}

.row-height-login-options {
  padding-top: 10px;
  padding-bottom: 30px;
  line-height: 24px;
  font-size: 0.9em;
}

.switch-text {
  text-align: left;
  font-weight: bold;
  font-size: 1.1em;
}

.tenant-text {
  text-align: left;
  font-size: 1em;
  color: #aaa;
  line-height: 1.5em;
  font-weight: normal;
}

.anonymous-text {
  text-align: left;
  margin: 0;
}

.password-align {
  text-align: right;
}

.row-height-login {
  margin-top: 16px;
}

.switch__buttons {
  /* display: inline-flex; */
  box-sizing: border-box;
  justify-content: right;
  display: flex;
  font-size: 1.11em;
}

.button--switch {
  padding-left: 30px;
}

.button--switch:after {
  margin-left: -66px;
  margin-top: 0px;
  position: absolute;
  font-family: "Material Icons";
  content: "find_replace";
  font-size: 1.2em;
}

.account__buttons {
  /* display: inline-flex; */
  box-sizing: border-box;
  justify-content: right;
  display: flex;
  margin-right: 10px;
}

.button--account {
  padding-left: 30px;
}

.button--account:after {
  margin-left: -60px;
  margin-top: 0px;
  position: absolute;
  font-family: "Material Icons";
  content: "login";
  font-size: 1.1em;
}

/* Start media queries */

@media screen and (max-width: 1050px) {
  .my-form {
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .row {
    flex-direction: row;
    gap: 0vw;
  }
}

@media only screen and (max-width: 575px) {
  .my-form {
    width: 100%;
    padding: 30px 10px;
  }

  .button--switch:after {
    margin-left: -62px;
  }

  .button--account:after {
    margin-left: -55px !important;
  }

  .form-title h1 {
    font-size: 2.5em;
    line-height: 1em;
  }

  .form-title-gap {
    margin-top: 30px;
  }
}
