* {
  box-sizing: border-box;
}

body {
  background: url('images/VAES.jpg');
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  margin: 0;
  background-color: #070709;
  background-position: center;
}

.container {
  padding: 40px 15px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.container img {
  height: 70px;
}

@media (min-width: 768px) {
  .content {
    max-width: 600px;
    height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 100px;
  }
}

h1 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
}

p {
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
    line-height: 32px;
  }
  p {
    font-size: 18px;
    line-height: 26px;
  }
}

.form {
  margin-top: 72px;
  max-width: 400px;
  /*display: none;*/
}
.form p {
  font-size: 16px;
}
.form input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  width: calc(100% - 134px);
  outline: none;
  font-size: 16px;
  padding: 8px 0;
  color: #fff;
  transition: all 0.3s;
}
.form input[type="email"]:hover,
.form input[type="email"]:focus {
  border-color: rgba(5,112,229,1);
}
.form .fields {
  position: relative;
}
.form #ss-submit {
  font-weight: 400;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 35px;
  padding: 8px 32px;
  z-index: 4;
  transition: all 0.3s;
}
.form #ss-submit:hover {
  cursor: pointer;
  background: rgba(5,112,229,0.6);
}

