* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}
body {
  background: #fafafa;
  font-family: Arial, sans-serif;
}

h1 {
  font-weight: normal;
  font-size: 32px;
}

.byline {
  font-size: 24px;
}

#background {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(#262262, #004b95);
  width: 300px;
  text-align: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 40px;
  margin-right: 40px;
}

a:link,
a:visited,
.btn-link {
  color: #004b95;
}
a:hover,
a:active,
.btn-link:hover {
  color: #262262;
}

#header {
  justify-content: space-between;
  margin: 50px 40px 20px 0;
  position: relative;
}
#header #phone {
  position: absolute;
  bottom: 20px;
  right: 0;
  font-size: 20px;
}
#header #logo {
  width: 300px;
  text-align: center;
}

#main {
  background: #fff;
  border-radius: 4px;
  margin-bottom: 50px;
  min-width: 300px;
  min-height: 80vh;
  box-shadow: 0px 0px 40px 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 40px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 40px 20px rgba(0, 0, 0, 0.1);
}

#form-container {
  flex: 3 400px;
  min-height: 500px;
  min-width: 0; /* prevent flex item from expanding beyond the container */
}
#image-container {
  border-radius: 4px 0 0 4px;
  background: #6d9cba url("../Synergy-home-sign.png") no-repeat;
  background-position: right;
  background-size: cover;
  min-height: 200px;
  flex: 2 200px;
}

.content {
  padding: 10% 5%;
  max-width: 700px;
  margin: 0 auto;
}

.btn-raised {
  padding: 15px 15px;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  background-color: #f8f8f8;
  z-index: 2;
  position: relative;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.5);
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition: all 0.1s;
  outline: 0;
  width: 49%;
}

.btn-raised:hover {
  background-color: rgba(10, 104, 56, 0.3);
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.8);
}

.btn-link {
  background: none !important;
  border: none;
  padding: 0 !important;
  text-decoration: underline;
  cursor: pointer;
}
