/* geral */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
    color: black;
    border: none;
}


textarea:focus, input:focus {
    outline: none;
}


a{ 
    text-decoration: none;
    font-size: 14px;
    color: black;

}





/* container login */

#login-container {
    background-color: white;
    width: 600px;
    height: 1024;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 30px;
    margin-top: 10vh;
    text-align: center;
    border-radius: 5px;
}

/* formulario */

form {
    margin-top: 30px;
    margin-bottom: 40px;
}

label, input{
    display: block;
    width: 100%;
    text-align: left;
}

label {
    font-weight: bold;
    font-size: .8rem;

}

input{
    border-bottom: 2px solid #323232;
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
}


input:focus {
    border-bottom: 2px solid blue;

}



#forgot-pass {
    text-align: right;
    display: block;
}


input[type="submit"] {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    height: 40px;
    border-radius: 20px;
    margin-top: 30px;
    color: white;
    background-color: blue;
    cursor: pointer;
}

input[type="submit"]:hover{
    background-color: #1b223c ;
    transition: .5s;
}


#instrucoes-container {
    background-color: rgb(165, 165, 165);
    width: 600px;
    height: 1024;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 30px;
    margin-top: 10vh;
    text-align: left;
    box-shadow: #323232;
    opacity: 90%;
    border-radius: 4px;
    text-decoration: none;
} 

header {
  width: 100%;
  height: 70px;
  background-color: #023e8a;
  padding: 0px;
  display: flex;
  flex-wrap: flex;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.menu {
  align-items: center;
  display: flex;
  list-style-type: none;
}

.menu li a {
  color: white;
  display: block;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

#chat a {
  display: block;
  padding: 25px 40px 25px 40px;
  height: 70px;
  width: 100px;
  background-color: black;
  text-decoration: none;
}
