html {
  font-size: 16px !important;
}

* {
  box-sizing: border-box;
  font-family: helvetica;
}

img {
  max-width: 100%;
}

.loginSection {
  width: 100%;
  height: 100%;
  background-color: #fff;
  margin: 0 auto;
  left: 0;
  top: 0;
  position: absolute;
}

.loginSection-login {
  width: 35%;
  height: 100%;
  position: relative;
  padding: 50px;
  float: left;
  overflow-x: auto;
}

.loginSection-image {
  width: 65%;
  height: 100vh;
  float: left;
  position: relative;
  overflow: hidden;
}

.loginSection-image img {
  max-width: none;
  height: 100%;
}

.logo {
  margin-bottom: 20px!important;
  text-align: center;
}

.logo img {
  max-width: 271px;
  min-width: 200px;
}

.formBlock {
  width: 100%;
  margin: 15px 0;
  display: table;
}

.loginButtonContainer {
  margin: 45px 0 0;
}

.floatLabelLogin {
  position: relative;
  margin: 45px 0;
}

.floatLabelLogin * {
  font-size: .8rem !important;
}

.floatLabelLogin label {
  color: #9e9e9e;
  position: absolute;
  top: 10px;
  left: 35px;
  cursor: text;
  transition: .2s ease-out;
  text-align: initial;
  z-index: 0;
}

.floatLabelLogin input[type=email],
.floatLabelLogin input[type=password],
.floatLabelLogin input[type=text] {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ccc;
  height: 35px;
  padding-left: 35px;
  position: relative;
  z-index: 1;
  background-color: transparent;
}

input[type=email]:disabled,
input[type=password]:disabled,
input[type=text]:disabled{
  background-color: #f3f3f3 !important;
}

input#Login:disabled ~label{
  top:-20px;
}

.floatLabelLogin input[type=email]:focus,
.floatLabelLogin input[type=password]:focus,
.floatLabelLogin input[type=text]:focus {
  border-color: #e8811b;
  outline-color: transparent;
}

.floatLabelLogin input[type=email]:focus~label,
.floatLabelLogin input[type=password]:focus~label,
.floatLabelLogin input[type=text]:focus~label {
  top: -15px;
  font-size: .75rem !important;
  color: #e8811b;
  transition: all .2s ease-in-out;
}

.floatLabelLogin input[type=email]:valid~label,
.floatLabelLogin input[type=password]:valid~label,
.floatLabelLogin input[type=text]:valid~label {
  top: -15px;
  font-size: .75rem !important;
}

.floatLabelLogin .iconField {
  position: absolute;
  color: #a7a7a7;
  font-size: 1.5rem !important;
  top: 5px;
  left: 0;
  width: 24px;
  height: 24px;
  z-index: 10;
}

#Senha {
    height: 35px !important;
    padding-left: 35px !important;
    margin-top: 0 !important;
}

.show-password {
    position: absolute;
    top: 3px;
    right: 0;
    background-color: transparent;
    border: 0;
    z-index: 2;
    color: #a7a7a7;
    cursor: pointer;
}

.show-password[data-show="true"] {
    color: #e8811b;
}

.show-password[data-show="false"] {
    color: #a7a7a7;
}

.floatLabel {
  position: relative;
  margin: 27px 0;
}

.floatLabel * {
  font-size: .8rem !important;
}

.floatLabel label {
  color: #9e9e9e;
  position: absolute;
  top: 10px;
  left: 0;
  cursor: text;
  transition: .2s ease-out;
  text-align: initial;
  z-index: 0;
}

.floatLabel input[type=email],
.floatLabel input[type=password],
.floatLabel input[type=text] {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ccc;
  height: 35px !important;
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.floatLabel input[type=email]:focus,
.floatLabel input[type=password]:focus,
.floatLabel input[type=text]:focus {
  border-color: #e8811b;
  outline-color: transparent;
}

.floatLabel input[type=email]:focus~label,
.floatLabel input[type=password]:focus~label,
.floatLabel input[type=text]:focus~label {
  top: -10px;
  font-size: .75rem !important;
  color: #e8811b;
  transition: all .2s ease-in-out;
}

.floatLabel input[type=email]:valid~label,
.floatLabel input[type=password]:valid~label,
.floatLabel input[type=text]:valid~label {
  top: -10px;
  font-size: .75rem !important;
}

.floatLabel select {
  width: 100%;
  height: 35px;
  border: 0;
  border-bottom: 1px solid #ccc;
}

.tenentSelect {
  display: block;
  margin-bottom: 10px;
  color: #9e9e9e;
}

.actionButtons {
  background-color: #e8811b;
  border-radius: 60px;
  border: 0;
  color: #fff;
  padding: 0 6px;
  width: 160px;
  cursor: pointer;
  margin: 25px auto 15px;
  display: block;
  position: relative;
  height: 30px;
  line-height: 30px;
  float: right;
}

.actionButtons i {
  position: absolute;
  right: 15px;
  top: 6px;
  font-size: 1.2rem !important;
}

.actionButtons:first-child {
  margin-left: 15px;
}

.actionButtons:last-child {
  background-color: #ccc;
}

.actionButtons.actionButtons-cancel i{
    left: 15px;
    right: unset;
}

.loginButton {
  background-color: #e8811b;
  border-radius: 60px;
  border: 0;
  color: #fff;
  padding: 0 6px;
  width: 205px;
  cursor: pointer;
  margin: 80px auto 30px;
  display: table;
  position: relative;
  height: 30px;
  line-height: 30px;
}

.loginButton i {
  position: absolute;
  right: 15px;
  top: 6px;
  font-size: 1.2rem !important;
}

.loginPasswordAccess {
  color: #b3b3b3;
  font-size: .8rem !important;
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.captchaImage {
  max-width: 200px;
  max-height: 75px;
  margin-bottom: 15px;
}

.is-relative {
  position: relative;
}

.loginFirstAccess a {
  color: #ccc;
  font-size: .8rem !important;
  text-decoration: none;
}

.filterDiv {
  background-color: rgba(0,0,0,.2);
  width: 100%;
  height: 100vh;
}


@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../../Login/fonts/material_icons.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(../../Login/fonts/material_icons.woff2) format('woff2'),
    url(../../Login/fonts/material_icons.woff) format('woff'),
    url(../../Login/fonts/material_icons.ttf) format('truetype');
}

.material-icons {
  font-family: Material Icons;
  font-weight: 400;
  font-style: normal;
  font-size: 24px !important;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility; 
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width:1023px) {
  .loginSection-login {
    width: 40%;
  }

  .loginSection-image {
    width: 60%;
  }
}

@media only screen and (min-width:1200px) {
  .loginSection-login {
    width: 35%;
  }

   .loginSection-login form{
      max-width: 550px;
      margin:0 auto;
   }

  .loginSection-image {
    width: 65%;
  }

}

@media only screen and (max-width:992px) {
  
  .loginSection-login {
    width: 50%;
  }

  .loginSection-image {
    width: 50%;
  }

}

@media only screen and (max-width:767px) {

    .loginSection-login {
        width: 100%;
    }

    .loginSection-image {
        width: 100%;
        display:none;
    }

}

.passwordValidationCode {
    border: none;
    width: 9ch;
    background: repeating-linear-gradient(
        90deg, 
        #909090 0, 
        #909090 1ch, 
        transparent 0, 
        transparent 1.5ch)
        0 100%/100% 2px no-repeat;
    color: dimgray;
    font: 5ch consolas, monospace;
    letter-spacing: .5ch;
}

.passwordValidationCode:focus {
    outline: none;
    color: darkorange;
}

.passwordValidationLabel {
    color: #909090;
    font-size: 1rem !important;
    text-decoration: none;
}