@import "https://fonts.googleapis.com/css2?family=Montserrat&display=swap";
html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #121020;
  background-color: #231f20;
  text-align: left;
}

a,
span {
  color: white;
  z-index: 1;
  position: relative;
}
a:after,
span:after {
  z-index: -1;
  content: " ";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(226, 30, 37, 0.2);
  background-color: #e21e25;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover,
a:focus {
  color: white;
  text-decoration: none;
}
a:hover:after,
a:focus:after {
  height: 100%;
  top: 0%;
  background-color: rgba(226, 30, 37, 0.6);
}

h1,
h2,
h3 {
  font-weight: 700;
  text-shadow: 2px 2px rgba(35, 31, 32, 0.33);
}

h1 {
  position: relative;
  letter-spacing: 0.099em;
  margin-bottom: 0.8em;
  color: rgba(255, 255, 255, 0.9);
}
h1 small {
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.66);
}
h1:after {
  content: " ";
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  width: 99px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
}

p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
}

header {
  color: #fff;
}
header .inner {
  border: 22px solid rgba(255, 255, 255, 0.2);
  margin: 5px;
  padding: 20px 20px;
  min-height: 100vh;
  background: #231f20 url("/assets/img/background-002.jpg");
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (min-width: 768px) {
  header .inner {
    border: 33px solid rgba(255, 255, 255, 0.2);
    margin: 20px;
    padding: 140px 20px;
    min-height: 400px;
  }
}

#signup {
  margin-top: 2em;
}
.btn {
  padding: 6px 24px;
  border-radius: 0;
  background-color: #e21e25;
  border: #e21e25;
  box-shadow: 6px 12px 33px -9px rgba(0, 0, 0, 0.6);
}

.btn:hover {
  background-color: rgba(226, 30, 37, 0.66);
  border: #e21e25;
  box-shadow: 6px 6px 33px -9px rgba(0, 0, 0, 0.9);
}

input.form-control {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.2);
}
