* {
  padding: 0;
  margin: 0;
}

body, html{
  height: 100%;
  font-size: 16px;
  font-family: 'Segoe UI', 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.8em;
  background: #C8D9E5;
}

a {
  text-decoration: none;
  transition: all 200ms ease-in-out;
}

a:hover,
a:active {
  text-decoration: none;
}

.content {
  min-height: 100vh;
  height: auto;
}

.form{
  background: #fff;
  max-width: 360px;
  width: 90%;
  padding: 45px;
  margin: auto;
  text-align: center;
  -webkit-box-shadow: 2px 2px 29px -6px rgba(0,0,0,0.25);
  -moz-box-shadow: 2px 2px 29px -6px rgba(0,0,0,0.25);
  box-shadow: 2px 2px 29px -6px rgba(0,0,0,0.25);
}

.form-lg {
  max-width: 560px;
}

.form input {
  width: 100%;
  margin: 15px 0;
  border-radius: 0;
  font-size: 15px;
}

.form select {
  width: 100%;
  margin: 15px 0;
  border-radius: 0;
  font-size: 15px;
}

.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  height: 1.5em;
  opacity: .5;
}
.hr-text:before {
  content: '';
  background: linear-gradient(to right, transparent, #818078, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
.hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: black;

  padding: 0 .5em;
  line-height: 1.5em;
  color: #818078;
  background-color: #fcfcfa;
}

.form .btn-group .btn-primary {
  background: #7492bb !important;
  width: 100%;
  border: 0;
  color: #fff;
  transition: all 0.3 ease;
}

.form .btn-group .btn-primary:not(:disabled):not(.disabled):active,
.form .btn-group .btn-primary.active{
  background: #5C7495 !important;
}


.form .btn-block {
  background: #7492bb;
  width: 100%;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}

.form .btn-block:hover,.form .btn-block:active,.form .btn-block:focus {
  background: #5C7495 !important;
}

.form img{
  max-width: 200px;
}

.hidden {
  display: none !important;
}

/* The message box is shown when the user clicks on the password field */
#message {
  display:none;
  background: #fff;
  color: #000;
  position: relative;
  padding: 20px;
  margin-top: 10px;
}

#message p {
  padding: 10px 35px;
  font-size: 15px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "✖";
}
