
#form-modal{
    display: none
}

#form-content {
    background-color: white;
}

#form-content h1 {
    padding-top: 20px;
    font-size: 2.5em;
    margin-top: 0;
    font-weight: bold;
    line-height: 1em;
}

#form-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

#form {
    background: white;
    padding: 30px 20px;
    margin: auto;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#form input[type="text"],
#form input[type="email"] {
    font-size: 1.2em;
    padding: 15px 15px 2px 15px;
    margin: 10px 0;
    border: 0px;
    border-bottom: 1px solid #606060;
    text-align: center;
    color:#606060;
}

#form input[type="checkbox"] {
    min-width: 20px;
    height: 20px;
}
.optin-label input[type="checkbox"]:checked {
    accent-color: #787878;
  }

.optin-label {
    font-size: 0.85em;
    margin-top: 10px;
    color: #787878;
    text-align: left;
    display: flex;
}

.optin-label a {
    color: #787878;
    text-decoration: underline;
}

.checkbox-text {
    padding-left: 20px;
    font-size: 12px;
    font-weight: 500;
}
#form-submit-button {
    margin: 30px auto 0px auto;
    background: black;
    color: white;
    border: none;
    padding-top: 4px;
    font-size: 3em;
    font-family: "ABC";
    cursor: pointer;
}

#form-product-img {
    max-width: 80%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.error {
    border-bottom: 2px solid red !important;
}

input[type="checkbox"].error {
    outline: 1px solid red !important;
    outline-offset: -1px;
}