@import url(//fonts.googleapis.com/css?family=Lato:300:400:500:700);

body {
  margin:0;
}

h2 {
  font-family: 'Lato', sans-serif;
  font-weight:300;
  letter-spacing: 2px;
  font-size:36px;
}
p {
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  font-size:14px;
  color: #333333;
}

.header {
  position:relative;
  text-align:center;
  background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
  color:white;
}
.logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}

.inner-header {
  height:20vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:10vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:50px;
  max-height:150px;
}

.content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card {
    align-items: center;
    padding: 40px;
    background: rgba(0,0,0,0.7);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.card .brand {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.card .brand img {
    width: 65px;
    margin: 0 15px;
}
.card .brand h5 {
    font-family: 'Lato', sans-serif;
    font-size: 10pt;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.1em;
    margin: 0;
}
.card .brand .brand-title p {
    color: #FFF;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: none;
    font-size: 7.5pt;
    font-weight: 400;
    margin-top: 5px;
}
.card .form {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.card .form .form-control {
    display: block;
    margin: 10px 0px;
    color: #f0f0f0;
    padding: 13px;
    background: rgba(0,0,0,0.4);
    border: 1px solid #071522;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 12pt;
}
.card .form input:focus {
    color: #FFF;
}
.btn-submit {
    font-family: 'Lato', sans-serif;
    margin-top: 20px;
    padding: 13px;
    background: rgba(0,172,193,1);
    font-size: 12pt;
    font-weight: 500;
    color: #FFF;
    border: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    cursor: pointer;
    -webkit-appearance: initial;
}
.btn-submit:hover {
    background: rgba(0,172,193,0.8);
}
/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}
.bg-gradient-success {
  background: #35dc43 linear-gradient(180deg,#28a745,#35dc43) repeat-x!important;
}
.bg-gradient-danger {
  background: #dc3545 linear-gradient(180deg,#e15361,#dc3545) repeat-x!important;
  color: #FFF;
}

.info-box {
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  border-radius: 20px;
  background: rgba(0,0,0,0.4);
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  min-height: 40px;
  padding: .5rem;
  position: relative;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.showpass {
  align-self: flex-start;
  background: rgba(0,0,0,0.4);
    border: 1px solid #071522;
    border-radius: 20px;
}
.showpass::after {
  content: 'Show Password';
  margin-left: 20px;
  position: absolute;
  color: #FFF;
}

@media screen and (max-width: 465px) {
  .card {
    padding: 40px 15px;
  }
}