html {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

body {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  background: rgb(43, 74, 103);
  background: linear-gradient(90deg, rgba(43, 74, 103, 1) 0%, rgba(92, 113, 133, 1) 100%);
}

.background {
  height: 100%;
  width: 100%;
  background: url("./../img/login_background.jpg");
  /*background-color: #b2bec;*/
  background-size: cover;
  filter: blur(5px);
  z-index: -1;
}

#content-area {
  z-index: 1;
  width: 30%;
  position: absolute;
  top: 15%;
  left: 35%;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 2.5%;
  box-sizing: border-box;
  opacity: 0.75;
  box-shadow: 5px 6px 20px 2px #374a71;
}

#content-area.error {
  border-top: 4px solid #ff3200;
}

#content-area.warning {
  border-top: 4px solid #ffb700;
}

#content-area.ok {
  border-top: 4px solid #447e96;
}

.disabled {
  display: none;
}

.input-card {
  width: 100%;
  height: 100%;
  text-align: center;
}

.input-card>input {
  display: block;
  margin: 30px 0px;
  border: none;
  border-bottom: 1px solid #464646;
  outline: none;
  width: 100%;
  font-size: 1.2em;
}

.input-card>input:active {
  border-bottom: 1px solid #0e0e0e;
}

.input-card>button {
  width: 100%;
  color: #fefefe;
  background-color: #447e96;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 15px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.2s;
}

.input-card>button:hover {
  background-color: #447e96;
  opacity: 0.8;
}

.logo {
  /* Logo */
  position: fixed;
  left: calc(50% - 50px);
  bottom: 5%;
  width: 100px;
}

.tab {
  border: none;
  outline: none;
  padding: 15px;
  font-size: 1.2em;
  cursor: pointer;
  float: left;
  background-color: transparent;
  width: auto;
  color: #6b6b6b;
  margin: 5px 5px 30px 5px;
}

.tab:hover {
  background-color: transparent;
  width: auto;
  color: #6b6b6b;
}

.tab.active:hover {
  background-color: transparent;
  width: auto;
  color: #0e0e0e;
}

.tab.active {
  color: #0e0e0e;
  border-bottom: 2px solid #447e96;
}

@media screen and (orientation:portrait) {
  #content-area {
    width: 50%;
    left: 25%;
  }
}
