#confirm-login-form-wrap h2 i{
    font-size:0.8em;
    margin-right:10px;
}
#error_msg,
#confirm_error_msg{
    font-size: 14px; 
    color: red;
    margin-bottom:20px;
}
.button_area{
    margin-top:50px;
}
#confirm_code {
    font-size:36px;
    padding-left: 9px;
    letter-spacing: 28px;
    color: #318CE7;
    border: 0;
    background-image: linear-gradient(to left, black 70%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 50px 3px;
    background-repeat: repeat-x;
    background-position-x: 38px;
    width: 275px;
    min-width: 275px;
}

label[for="ec_otc_keep_connected"]{
    cursor:pointer;
}
#divInner{
  left: 0;
  position: sticky;
}

#divOuter{
  width: 240px; 
  overflow: hidden;
}
#confirm-login-form-wrap{
    display:none;
}
#login-form-wrap h2, #confirm-login-form-wrap h2 {
    color: #318CE7;
    line-height:1;
    font-size:3rem;
}



input#ec_otc_keep_connected {
    height: 25px;
    width: 25px;
    float:left;
}

#login-form-wrap,
    #confirm-login-form-wrap{
    max-width:600px;
    padding:40px;
}

#login-form-wrap, #confirm-login-form-wrap {
  background-color: #fff;
  margin: 30px;
  border-radius: 4px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}


.intro {
    margin-bottom: 40px;
    font-size:15px;
}
input {
  display: block;
  box-sizing: border-box;
  outline: none;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 0 0 0 10px;
  margin: 0;
  color: #8a8b8e;
  border: 1px solid #c2c0ca;
  font-style: normal;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: inline-block;
  background: none;
}
input[type="text"]:focus,
input[type="email"]:focus {
  border-color: #3ca9e2;
}


#ec_otc_confirm_login,
#ec_otc_login,
#ec_otc_confirm_code{
  border: none;
  background-color: #0076CE;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

input[type="submit"]:hover,
input[type="button"]:hover{
  background-color: #3457D5;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#ec_otc_login,
    #ec_otc_confirm_code{
    width:160px;
}

#ec_otc_confirm_voltar {
    background: none;
    color: #0076CE;
    width: 200px;
    float: right;
    text-transform: initial;
    font-weight: 500;
    padding: 0;
    margin: 0;
    border: 2px solid #0076CE;
    text-align: center;
    font-size: 14px;
    letter-spacing: normal;
}
            
.toggle {
    cursor: pointer;
    display: inline-block;
}

.toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 58px;
    height: 32px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
    content: "";
}
.toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
    background: #0076CE;
    /*background: #56c080; VERDE*/
}
.toggle-checkbox:checked + .toggle-switch:before {
    left: 30px;
}

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
}