/* --------------------------------
   BODY
---------------------------------- */
body {
  background: #21404e url(./background.webp) center/cover;
  display: flex;
  flex-direction: column;
}

/* --------------------------------
   LOGIN CONTAINER
---------------------------------- */
#login {
  width: 400px;
  background: #fff;
  border-radius: 10px;
  padding: 50px;
  position: relative;
  box-shadow: 20px 20px 24px rgba(0, 0, 0, 0.2);
}

/* --------------------------------
   LOGIN HEADER
---------------------------------- */
.login h1 a {
  background: #fff url(./logo.webp) center no-repeat;
  background-size: 190px;
  width: 190px;
  padding: 20px 20px 0 20px;
  margin: auto;
  margin-top: -10px;
  border-radius: 0 0 8px 8px;
}

/* --------------------------------
   FORMULÁRIO
---------------------------------- */
#loginform {
  box-shadow: none;
  padding-bottom: 10px;
}

.login form {
  border: none;
}

label {
  width: 100% !important;
}

input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

input:focus {
  border-bottom-color: #21404e !important;
}

.login form input[type=text],
.login form input[type=password] {
  border-bottom: 1px solid #ccc !important;
}

.login form input[type=checkbox] {
  background: #f5f5f5;
}

.forgetmenot {
  display: flex;
  align-items: center;
}

/* --------------------------------
   LINKS & NAVEGAÇÃO
---------------------------------- */
.login #nav {
  position: absolute;
  bottom: 23px;
}

.login #nav a {
  text-decoration: none;
  color: #21404e;
}

/* --------------------------------
   ELEMENTOS OCULTOS
---------------------------------- */
.language-switcher,
.login .privacy-policy-page-link,
#backtoblog {
  display: none;
}