@charset "UTF-8";





body {
    background-color: rgb(20, 27, 45);
    text-align: center;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    height: 100vh;
    
}
.btnLogin{
    background-color: rgb(209, 205, 205);
    border-radius: 12px;
    border: 0;
    color: black;
    cursor: pointer;
    font-size: 14px;
    padding: 11px;
    margin-top: 10px;
    text-align: center;
    width: 60%;
    margin-left: 25%;
    
}

.btnLogin:hover{
    background-color: #506a70;
    color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
}

.inputLogin{
    background-color: white;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: black;
    font-size: 14px;
    outline: 0;
    padding: 4px 20px 10px;
    width: 70%;
}
.formLogin{
    align-self: center;
}

div#form_fundo {
    background-color: #01364b;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 2px 5px 5px rgb(7, 7, 7);
    align-self: center;
    display: flex;
    position: absolute;
}

.input {
    background-color: #303245;
    border-radius: 12px;
    border: 0;
    padding: 20px;
    margin: 10px;
    box-sizing: border-box;
    color: #eee;
    font-size: 18px;
    height: 100%;
    outline: 0;
    width: 50%;
  }

  .placeholder {
    color: #65657b;
    font-family: sans-serif;
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 20px;
  }
  

h1 {
    color: #f1f1f1;
    font-weight: 800;
    margin: 0;
}

label[for="nome"], label[for="senha"] {
    color: white;
}

div.flash_alerta {
    color: red;
    font-size: 12px;
}

.imglakatos{
    max-width:200px;
    max-height:150px;
    width: auto;
    height: auto;
    margin-right: 50px;
}

@media (max-width: 426px) {
    .imgLogin{
        display: none;
      }
    body{
        justify-content: center;
    }
}


@media (min-width: 768px) {
    .imgLogin{
        width:60%;
        height: auto;
      }
      div#form_fundo {
        right: 50px;
      }
}

@media (min-width: 1024px) {
    .imgLogin{
        width:50%;
        height: auto;
      }
      div#form_fundo {
        right: 50px;
      }
}