/* ------------------------------ Login ------------------------------ */
body {
  background-image: url("../img/background.png");
  background-position: center center;
  background-size: auto 120%;
  line-height: 1.5 !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: normal !important;
  color: rgba(0, 0, 0, 0.87) !important;
}

input {
  line-height: 1.5 !important;
  font-family: "Roboto", sans-serif !important;
  font-weight: normal !important;
  color: rgba(0, 0, 0, 0.87) !important;
}

.input-size {
  margin-top: 2rem;
}

.input-size label {
  font-size: 1.1em;
  font-weight: normal !important;
}

.input-size input {
  font-size: 1.1em;
  font-weight: 550;
}

/* label focus color */
.input-field input[type="email"]:focus + label,
.input-field input[type="password"]:focus + label {
  color: #074677;
}

/* label focus font size */
.input-field label.active {
  font-size: 1em;
}

/* label underline focus color */
.input-field input[type="email"]:focus,
.input-field input[type="password"]:focus {
  border-bottom: 2px solid #074677;
  box-shadow: 0 2px 0 0 #074677;
  background-color: #07477723;
}

/* icon prefix focus */
.input-field .prefix.active {
  color: #074677;
}

.input-field .prefix {
  font-size: 28px;
}

.input-field .prefix ~ label, .input-field .prefix ~ input{
  margin-left: 42px;
}

/* valid color */
.input-field input[type="email"].valid,
.input-field input[type="password"].valid {
  border-bottom: 1px solid #00ff00;
  box-shadow: 0 1px 0 0 #00ff00;
}
/* invalid color */
.input-field input[type="email"].invalid,
.input-field input[type="password"].invalid {
  border-bottom: 1px solid #ff0000;
  box-shadow: 0 1px 0 0 #ff0000;
}

.login-img-logo {
  width: calc(100% + 20px);
  background-color: #5EEAF6;
  margin-bottom: 20px;
  margin-top: -20px;
  margin-left: -10px;
  padding: 25px;
}

.login-img-logo > img {
  width: 70% !important;
  height: auto;
  margin-left: 20px;
}

.padding-0 {
  padding: 0px;
}

.margin-0 {
  margin: 0px;
}

.login-card {
  overflow: hidden;
  width: 400px;
  /* width: 100%; */
  height: 75%;
  background-color: white;
  padding: 20px 10px;
  border-radius: 50px 10px;
  -webkit-box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  -moz-box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  /* -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.75); */
}

.login-header {
  margin-top: 5px;
  margin-bottom: 5px;
}

.login-header .title {
  color: #000;
  font-size: 1.4em;
  font-weight: 300;
  padding: 20px;
}

.login-error {
  margin-top: 3px;
  margin-left: 15px;
  width: calc(100% - 30px);
  background-color: red;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0px 10px;
  border-radius: 10px 0px;
}
.d-none {
  display: none;
}

@media (min-width: 601px) {
  .row .col.offset-m-center {
    margin-right: 12.5%;
  }

  .d-m-block {
    display: block;
  }
}

@media (min-width: 993px) {
  .row .col.offset-l-center {
    margin-right: 58.3333333333%;
  }
}

.login-form {
  padding-left: 20px;
  padding-right: 20px;
  width: calc(100% -40px);
  margin-top: 3em;
}
.login-button {
  display: inline-block;
  margin-left: auto;
}

.login-button-container {
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
}

.login-recover-password {
  font-size: small;
  cursor: pointer;
  margin-top: 30px;
  color: black;
}

.login-recover-password:hover {
  color: #bf3364;
}

.flex-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iframe-login {
  border-radius: 50px 0px;
}

.container-login {
  position: relative;
  height: 90vh;
  width: 94vw;
}

.center-all {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iframe-container {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 80%;
  display: none;
}

.data-container {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* @media (min-width: 500px) {
  .iframe-container {
    width: 60%;
  }
  .data-container {
    width: 60%;
  }
} */

@media (min-width: 600px) {
  .iframe-container {
    display: block;
    width: 75%;
  }
  /*.data-container {
    width: 40%;
  }*/
}

@media (min-width: 1000px) {
  .iframe-container {
    display: block;
    width: 80%;
  }

  /*.data-container {
    width: 25%;
  }*/
}
