* {
  box-sizing: border-box;
}

body {
  background: #446d76;
  width: 50%;
  margin: 0 auto;
}

.login_container {
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 8px 8px #000000;
}

.login_container>h1 {
  text-align: center;
  margin: 0px;
  margin-top: 10px;
  margin-bottom: 7px;
  color: #446d76;
}

.nation {
  text-align: center;
  margin: 0px;
  margin-top: 10px;
  margin-bottom: 7px;
  color: #446d76;
}

.nation>img {
  text-align: center;
  width: 30px;
  height: 20px;
}

.formTab {
  margin: 10px;
}

input[type=email], input[type=password] {
  margin-top: 15px;
  font-size: 11pt;
  width: 100%;
  border: none;
  padding: 8px;
  border-bottom: 1px solid #446d76;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}

input.invalid {
  border-bottom: 1px solid red;
}

.formTab>h5 {
  margin: 0;
  margin-top: 5px;
  margin-left: 8px;
  font-weight: normal;
  color: red;
}

.btn_case {
  display: flex;
  flex-direction: row;
  margin: 10px;
}

.finder {
  margin-top: 30px;
  margin-bottom: 15px;
  display: block;
  text-align: center;
  color: #908a8a;
}
/*a {*/
  /*margin-top: 30px;*/
  /*margin-bottom: 15px;*/
  /*display: block;*/
  /*text-align: center;*/
  /*font-size: 8px;*/
/*}*/

a:link, a:visited {
  color: #908a8a;
  text-decoration: none;
}

button {
  width: 100%;
  margin: 5px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #446d76;
  border-radius: 3px;
  color: #446d76;
  font-size: 13pt;
  font-weight: bold;
}

#line {
  width: 100%;
  height: 1px;
  background: #446d76;
}

::placeholder {
  color: #868686;
  font-size: 11pt;
}

@media only screen and (max-width:600px) {
  body {
    width: 95%;
  }

  .login_container {
    margin-top: 110px;
  }
}
