@import url('https://fonts.googleapis.com/css?family=Montserrat:300,800');

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background-color: #45aaf2;
  color: white;
}
p {
  color: white;
}

* {
  margin: 0;
  padding: 0;
}

section, nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  max-width: 70%;
  margin: auto;
  position: relative;
}
nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 90%;
  margin: auto;
  position: relative;
}
section:before, nav:before {
  content: "";
  position: absolute;
  background-size: 100%;
  width: 100%;
  height: 402px;
  z-index: -1;
}



.subtitle {
  margin-top: 25px;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.5;
  opacity: 1;
  /* animation: slideUp 1s cubic-bezier(0.19, 1, 0.30, 1) 0.5s forwards; */
}


a {
  color: inherit;
  text-decoration: underline;
}

p {
  margin: 0.83rem 0;
}

@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  50% {
    opacity: 0.2%;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

h1 {
  font-size: 5vh;
  font-weight: 800;
}
.my-5 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

textarea {
  min-height: 200px;

}

input, textarea {
  width: 100%;
  background: white;
  font-family: 'Montserrat', sans-serif;
  border: 0px;
  border-radius: 10px;
  padding: 10px;
  font-size: 20px;
}
input {
  width: 100%;
  margin-left: 50px;
}

.btn-submit {
  background: #2ecc71;
  color:white;
  padding: 10px 20px;
  border-radius: 10px;
  border: 0px;
  width: 100%;
  font-size: 30px;
}

.bg-red {
  background-color: #e74c3c;
}
.bg-green {
  background-color: #2ecc71;
}
.captcha {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
  justify-content: space-evenly;
}

.hero {
  max-height: 300px;
}
.mt-5 {
  margin-top: 5rem !important;
}
.text-yellow {
  color: #f1c40f;
}


span.password-list.bg-dark {
  font-weight: 300;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid gainsboro;
  font-size: 18px;
}