/* geral */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
  color: #323232;
  border: none;
}

body {
  background-image: url('../img/background.png');
  background-size: cover;
  /*background-position-y: 50px;*/
}

textarea:focus, input:focus{
  outline: none;
}

a {
  font-size: .8rem;
}

a:hover {
  color: #08558B;
}


/* container login */
#login-container {
  background-color: #FFF;
  margin-left: auto;
  margin-right: auto;
  width: 400px;
  padding: 20px 30px;
  margin-top: 6vh;
  border-radius: 10px;
  text-align: center;
}

/* formulário */
form {
  margin-top: 25px;
  margin-bottom: 20px;
}

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: 15px;
}

input:focus {
  border-bottom: 2px solid #08558B;
}

#forgot-pass {
  display: block;
  text-align: right;
}

input[type="submit"] {
  text-align: center;
  text-transform: uppercase;
  border: none;
  height: 40px;
  border-radius: 20px;
  margin-top: 20px;
  cursor: pointer;
  color: #FFF;
  background-color: #08558B;
  font-weight: bold;
}

input[type="submit"]:hover {
  background-color: #1B223C;
  transition: .5s;
}

/* redes sociais */
#social-container {
  margin-bottom: 10px;
}

#social-container p {
  margin-bottom: 10px;
}

#social-container i {
  font-size: 2rem;
  margin: 0 5px;
  cursor: pointer;
}

.bi-facebook {
  color: #3B5998;
}

.bi-linkedin {
  color: #0077B5;
}

/* registrar */
#register-container p {
  margin-bottom: 2px;
}

div#error_login {
  text-align:center; 
  width:50%;
  margin: 0 auto;
  top: 20px;
}