body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-image: url(../assets/img/background.svg);
  font-family: Arial, Helvetica, sans-serif;
}

.loading {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 84, 155, 0.6);
  display: none;
}

.loading.open {
  display: flex;
}

.card__container {
  margin: 10em auto;
  width: 18em;
  height: 20em;
  border-width: .1em;
  border-style: solid;
  border-color: transparent;
  border-radius: .3em;
  box-shadow: .4em .4em .8em .2em rgba(8,8,8,.2);
  background-color: #fff;
  color: #707070;
}

.card__logo {
  text-align: center;
  padding-top: 10px;
}

.card__logo img {
  margin: 10px auto;
}

.card__form {
  text-align: left;
  width: 225px;
  margin: auto;
  margin-top: 2em;
}

.card__form label {
  text-align: left;
  font-weight: bold;
}

.card__form input {
  margin-top: 5px;
  width: 99%;
  height: 1.5em;
  border-radius: 5px;
  padding: 5px 0px;
  padding-left: 10px;
  outline: none;
  border: none;
  background-color: #e6e6e6;
}

::placeholder {
  opacity: .2;
}

a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding-top: 7px;
}

button, a {
  margin-top: 30px;
  border: 1px solid #707070;
  font-weight: 200;
  color: #fff;
  background-color: #003d6e;
  height: 1.9em;
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
  transition: all .2s;
}

button:hover, a:hover {
  opacity: .8;
}

p {
  text-align: center;
}


a.link {
	display: inline-block;
	text-align: center;
	font-weight: 500;
	margin-top: 20px;
	color:#333;
	background: transparent;
	border: none;
	opacity: .5;
	text-decoration: underline;
	
}