body {
  margin: 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
  font-size: 12px;
}

.blue{
  color: #06449a;
  font-size: 20px;
}

.phone a, .complete{
  color: #06449a;
}

.phone, .complete{
  font-size: 20px;
}


.phone a:hover{
  color:#2c5da3;
}

.submit-button {
  color: #06449a;
  background: linear-gradient(0deg, rgba(0,152,206,1) 0%, rgba(0,234,245,1) 100%);
  font-size: 20px;
  border: none;
}

.submit-button:hover {
  background-color: #06449a;
  color: white;
  font-size: 20px;
}

.footer a {
  color: black;
  text-decoration: none;
}

.form-control,.form-select{
  border: black solid 2px;
}

.mobile-hero{
  display: none;
}

@media only screen and (max-width: 991px) {
  .form-container{
    margin-left: 15%;
    margin-right: 15%;
  }
  .desktop-only{
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .form-container{
    margin-left: 0;
    margin-right: 0;
  }
  .desktop-hero{
    display: none;
  }
  .mobile-hero{
    display: block;
  }
  .header{
    font-size: 15px;
  }
  .copy{
    font-size: 12px;
  }
}