@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.bg {
  background-image: url(../img/login-bg.png);
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.container {
  width: 400px;
  padding: 25px;
}

form.login-form {
  position: absolute;
}

.login-title {
  text-transform: uppercase;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 10px;
}

.login-desc {
  letter-spacing: 2.6px;
}

.text-white {
  color: #ffffff;
}

input#username, input#password {
  background: transparent;
  border: solid 2px #ffffff;
  border-radius: 25px;
  margin-bottom: 15px;
  padding: 22px 25px;
  color: #ffffff;
}

input#username:focus, input#password:focus {
  color: #ffffff;
}

.field_row {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}

.img-nf-logo {
  height: 45px;
  width: auto;
}

.login-btn {
  border-radius: 25px;
  width: 38%;
  height: 47px;
  background-color: #4589FF;
  color: #ffffff;
  font-size: 18px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.login-btn:hover {
  transition: 0.4s ease;
  background: linear-gradient(90deg, rgba(69,137,255,1) 0%, rgba(91,238,208,1) 100%);
}

.login-btn > i {
  margin-left: 5px;
}

.footer {
  margin-top: 10px;
}

span.error {
  font-size: 12px;
  color: #F07746;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.header_base, .top_menu {
  display: none !important;
}