/* Reset css */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* css starts */
body {
  font-family: "Source Sans Pro", sans-serif;
  overflow: hidden;
}
.text-center {
  text-align: center;
}

.main {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../images/main-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.box-container {
  width: 95%;
  margin: 0 auto;
  height: auto;
  border: 3px solid #3d4248;
}

.logo {
  width: 50%;
  display: block;
  margin: 10% auto;
}
.coming-soon {
  margin-bottom: 5%;
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 10px;
  display: grid;
  grid-template-columns: 0.2fr auto 0.2fr;
  grid-template-rows: 20px 0;
  grid-gap: 20px;
}

.coming-soon:after,
.coming-soon:before {
  content: " ";
  display: block;
  border-bottom: 3px solid #3d4248;
}
.text {
  font-size: 1.5rem;
}
form {
  margin-bottom: 6%;
}
.form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #3d4248;
  margin: 7% 0 0 0;
}
.form-container label {
  font-size: 1.5rem;
  margin-right: 5px;
}
.form-field {
  margin-right: 15px;
  padding: 5px;
  border: 1px solid #3d4248;
  background: transparent;
}
.submit-btn {
  background-color: #171d4d;
  font-size: 1.25rem;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 5px 10px;
  margin-top: 10px;
}
.footer-email {
  margin-bottom: 25px;
}
.footer-email a {
  color: #000;
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 5px;
}
#my-form-status {
  color: green;
}

@media only screen and (min-width: 1280px) {
  .logo {
    width: auto;
    margin: 5% auto;
  }
  .coming-soon {
    font-size: 2.5rem;
    margin-bottom: 2%;
  }
  .form-container {
    margin: 3% 0 2% 0;
  }
  .submit-btn {
    margin-top: 0;
  }
}
