* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #fff;}
input:-moz-placeholder { color: #fff;}
input::-moz-placeholder { color: #fff;}
input:-ms-input-placeholder { color: #fff;}

textarea::-webkit-input-placeholder { color: #fff;}
textarea:-moz-placeholder { color: #fff;}
textarea::-moz-placeholder { color: #fff;}
textarea:-ms-input-placeholder { color: #fff;}


body {
    background-image: url('../imagens/bg.jpg'); 
    background-repeat: no-repeat; 
    background-size: cover;
    width: 100%;
    height: 100vh;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
}

div.app-container{
    width: 100%;
    height: 100%;
    display: flex;
    padding: 50px 0 0 0;
}

div.container-dash-news{
    width: 80%;
    height: 98%;
    display: flex;
    gap: 30px;
    padding: 0 2%;    
    align-items: flex-start;
    flex-wrap: wrap;
}

div.container-login{
    width: 35%;
    height: 100%;
}

div.panel{
    width: 100%;
    height: 100%;
    background-color: #183a4e;
    /* background-color: red; */
}

div.wrap-login{
    width: 90%;
    height: 98%;
    border-radius: 10px;
    margin-right: 15%;
    border: solid 1px #c7c7c7;
    overflow: hidden;
    padding: 35px 55px 37px 55px;
    background: #2c5e73;
    background: -webkit-linear-gradient(top, #2c5e73, #347d9b);
    background: -o-linear-gradient(top, #2c5e73, #347d9b);
    background: -moz-linear-gradient(top, #2c5e73, #347d9b);
    background: linear-gradient(top, #2c5e73, #347d9b);
}

.validate-input {
    position: relative;
}
.wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid rgba(255,255,255,0.24);
    margin-bottom: 23px;
}

.input {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px 0 38px;
    outline: none;
    border: none;
}

.focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

    .focus-input::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
        background: #fff;
    }

    .focus-input::after {
        font-family: Material-Design-Iconic-Font;
        font-size: 22px;
        color: #fff;
        content: attr(data-placeholder);
        display: block;
        width: 100%;
        position: absolute;
        top: 6px;
        left: 0px;
        padding-left: 5px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }


.input:focus {
  padding-left: 5px;
}

.input:focus + .focus-input::after {
  top: -22px;
  font-size: 18px;
}

.input:focus + .focus-input::before {
  width: 100%;
}

.has-val.input + .focus-input::after {
  top: -22px;
  font-size: 18px;
}

.has-val.input + .focus-input::before {
  width: 100%;
}

.has-val.input {
  padding-left: 5px;
}

.login-form-logo img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    margin-bottom: 25px;
}


/* button */

.container-login-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  
  .login-form-btn {
     cursor: pointer;
    outline: none;
    border: none;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 21px;
    color: #555555;
    line-height: 1.2;
  
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 270px;
    height: 50px;
    border-radius: 10px;
  
    background: -webkit-linear-gradient(bottom, #173a4d, #295973);
    background: -o-linear-gradient(bottom, #173a4d, #295973);
    background: -moz-linear-gradient(bottom, #173a4d, #295973);
    background: linear-gradient(bottom, #173a4d, #295973);
    position: relative;
    z-index: 1;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .login-form-btn::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #fff;
    top: 0;
    left: 0;
    opacity: 1;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .login-form-btn:hover {
    color: #fff;
  }
  
  .login-form-btn:hover:before {
    opacity: 0;
  }

.link-redefinir-senha{
    outline: none !important;
    border: none;
    background: transparent;
    background-color: unset;
    color: #ffff;
    cursor: pointer;
    text-align: center;
    width: 100%;
    margin: 6% 0;
    font-size: 9pt;
}

.copyright {
    margin-top: 23px;
    margin-bottom: 2px;
    color: #fff;
    font-size: 13px;
}

.copyright-solucoes {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 13px;
}

.none{
    display: none;
}

div.panel{
  border: 1.5px solid white;
  border-radius: 5px;
  width:63%;
  height: auto;
  min-height: 60%;
  height: 60%;
}

div.panel-horizontal{
  min-height: 32%;
  height: 32%;
  width: 96.5%;
}

div.panel:nth-child(1){
  width: 30%;
}

div.panel div.header{
  background: #183a4e;
  padding: 8px 15px;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  border-radius: 5px 5px 0 0 ;
  background-color: rgba(255, 255, 255, 0.1);
}

div.panel div.body{
  background: #183a4e;
  padding: 5px 8px;
}

div.panel div.body ul.list-itens{
  list-style: none;
  color: white;
  font-size: 12px;
}

div.panel div.body ul.list-itens li{
  cursor: pointer;
  display: flex;
  align-items: center;
}

div.panel div.body ul.list-itens li:hover{
  background-color: #0f2c3d;
}

div.panel div.body ul.list-itens li span{
  min-height: 22px;
  display: flex;
  align-items: center;
}

div.panel div.body ul.list-itens li span:nth-child(2){
  margin-left: 6px;
  margin-right: 8px;
}

.flex{
  display: flex;
  flex-wrap: wrap;
}

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

.msg-acesso{
  height: 14%;
  font-size: 15px;
  width: 38%;
  color: #fff;
  padding: 28px;
  text-align: center;
  border: 1px solid #c7c7c7;
  background: #183a4e !important;
  border-radius: 8px 8px 8px 8px;
}

@media (max-width: 820px){
  .container-dash-news {
      display: none !important;
  }
  div.container-login {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  div.wrap-login {
    margin-right: 0 !important;
  }
}