form {
    max-width: 920px;
    width: 100%;
    margin: 130px auto 80px auto;
    padding: 40px;
    border: 1px solid #132a4a68;
    border-radius: 4px;
}

label {
    margin: 7px 0px 0px 0px;
    text-align: left;
}

.contact-row {
    width: 100%;
    border-bottom: 1px solid #132a4a68;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.main-container {
    max-width: 920px;
}

#contact-logo {
    position: absolute;
    right: 10px;
    top: 50px;
    width: 160px;
}

.subheader-contact {
    font-size: 1.2em;
    font-weight: 500;
    color: #0d294e;
    line-height: 120%;
    margin: 10px 0px 20px 0px;
  }

fieldset {
    border-width: 0px;
    border-color: white;
    border-style: solid;
    border-image: none;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-block-start: 0em;
    padding-inline-start: 0em;
    padding-inline-end: 0em;
    padding-block-end: 0em;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 5px 0px 20px 0px;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #27a1b4;
    border-width: 1px;
    border-color: #132a4a68;
    border-style: solid;
    border-image: none;
    background-color: white;
}

input:focus, textarea:focus {
    outline: none !important;
    border-color: #27a1b4;
    background-color: #d9e7cd94;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #27a1b48e;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #27a1b48e;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #27a1b48e;
  }

button {
    font-size: 1.2em;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    width: 250px;
    padding: 10px 5px;
    color: white;
    background-color: #27a1b4;
    border: 1px solid #27a1b4;
    transition: 1s;
    box-shadow: 0px 5px 10px #132a4a63;
}

button:hover {
    cursor: pointer;
    color: #27a1b4;
    background-color: rgba(211, 221, 192, 0.603);
}

.button-row {
    width: 100%;
    text-align: center;
    margin: 20px auto;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    color: #27a1b4;;
  -webkit-text-fill-color: #27a1b4;;
  transition: background-color 2s ease-in-out 0s;
  background-color: white;
}

@media screen and (max-width: 1000px) {

    #contact-logo {
        position: relative;
        top: 20px;
        margin: 0px auto;
        width: 200px;
    }

    .contact-row {
        width: 100%;
        border-bottom: 0px solid #132a4a68;
        padding-bottom: 0px;
        padding-top: 10px;
        margin-bottom: 10px;
    }

    form {
        margin: 30px auto 20px auto;
        padding: 10px;
    }
}