@import url("./global.css");
.wrapperLogin {
    min-height: 100vh;
    width: 100%;
    /*  background-image: url("/img/bg.jpg");
*/
    background-color: #111;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2rem;
    background-color: #ffffff18;
}

.loginContainer {
    background-color: #ffffff;
    max-width: 650px;
    border-radius: 5px;
    overflow: hidden;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border: 1px solid #1925a8;
}

.loginContainer .banner {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: fill;
     object-fit: fill;
  width: 100%;
  height: 250px;
}

.loginContainer .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1925a8;
  padding: 0.5rem 1rem 0.5rem 1rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.103);
}

.loginContainer .title .license {
  max-width: 130px;
}

.loginContainer form {
  padding: 1.5rem;
}

.loginContainer form label {
  font-family: "Montserrat", sans-serif;
  color: #1e2024;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

    .loginContainer form .accountInputs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1rem;
        color: #000;
        width: 100%;
       
    }

     .summary {
        flex: 1 0 100%;
        color:red;
    }

    .loginContainer form .accountInputs input[type="text"], .loginContainer form .accountInputs input[type="password"] {
        margin: 0.8rem 0 1.5rem 0;
        font-family: "Source Sans Pro", sans-serif;
        font-weight: 400;
        width: 100%;
        background: #ffffff00;
        border: 2px solid #1925a8;
        font-size: 15px;
        padding: 1.2rem;
        outline: none;
        border-radius: 5px;
        color: #000;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .loginContainer form .accountInputs .field-validation-error {
        color: Red;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }

.loginContainer form .accountInputs input[type="text"]:focus {
  border: 2px solid #1925a8;
}

.loginContainer form .signInBtn {
    background: #1925a8;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1.5rem 1rem;
    font-size: 13px;
    border: none;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

.loginContainer form .forgotPasswordBtn {
  font-family: "Source Sans Pro", sans-serif;
  text-decoration: none;
  font-size: 15px;
  color: #1925a8;
  font-weight: 600;
}

.loginContainer form .contatUs {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e2024;
  font-size: 11px;
  margin-top: 2rem;
}

.loginContainer form .contatUs a {
  color: #1925a8;
  text-decoration: none;
}

.loginContainer form .cashInBtn {
  width: 100%;
  height: 3.5rem;
  margin-top: 1.5rem;
}

.loginContainer form .note {
  border-top: 1px solid #292626;
  color: #1e2024;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 0.8rem;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.loginContainer form .note a {
  color: #1925a8;
  text-decoration: none;
}

@media (max-width: 750px) {
  .wrapper {
    padding: 0;
    margin: 0;
  }
  .wrapper .loginContainer {
    max-width: 100%;
    border-radius: 0;
  }
  .wrapper .loginContainer .accountInputs {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*# sourceMappingURL=loginv4.css.map */