input:not([type='checkbox']),
textarea {
    position: relative;
    font-family: 'SharpSansNo1Book';
    font-size: 14px;
    color: #000;
    width: calc(100% - 8px);
    background-color: #fff;
    border: 0px;
    padding: 5px 0px 5px 8px;
}

input::placeholder,
textarea::placeholder {
    color: #000;
}

textarea {
    resize: none;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0px;
    border: 0px !important;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background-color: #fff;
    position: absolute;
}

input[type='checkbox']:checked:before{
    content: '\2713';
    margin: 0px;
    display: block;
    text-align: center;
}

span > button {
    color: #fff;
    font-family: 'SharpSansNo1Light';
    font-size: 14px;
    background-color: #000;
    border: 0px;
    padding: 5px 30px 5px 30px;
    float: right;
    cursor: pointer;
    min-width: 100px;
}

button.disabled {
    cursor: not-allowed;
}

button > img {
    height: 10px;
}

.submit-form-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.submit-form-container label {
    font-family: 'NeusaCompactLight';
    font-size: 15px;
    margin-left: 30px;
    cursor: pointer;
}

.alert-message, .success-message {
    display: flex;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.alert-message {
    color: red;
}

.success-message {
    color: green;
}


.alert-message span,
.success-message span {
    font-size: 18px;
    font-family: 'NeusaCompactLight';
}

@media (max-width: 575.98px) {
    
    #contact-form input, textarea {
        font-size: 10px;
    }

    #contact-form textarea {
        height: 6em;
    }

    div.form-content input:not([type='checkbox']), div.form-content textarea {
        margin-bottom: 4px !important;
    }

    .alert-message span, .success-message span {
        font-size: 12px;
    }

    .submit-form-container label {
        font-size: 11px;
    }

    span > button {
        font-size: 12px;
    }
      
}