#contact-form-form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

#contact-form-form>input[type="text"],
#contact-form-form>input[type="email"] {
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    box-sizing: border-box;
    font-weight: 500;
    height: 44.4px;
    margin-top: 5px;
}

#contact-form-form>textarea {
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    box-sizing: border-box;
    font-weight: 500;
    height: 200px;
    line-height: 1.75;
    margin-top: 5px;
}

#contact-form-form>p {
    line-height: 1.75;
    font-size: 16px;
    color: #646464;
}

#contact-form-form>p:not(:first-of-type) {
    margin-top: 10px;
}

#contact-form-form>button {
    align-self: flex-start;
    margin-top: 30px;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    display: inline-block;
    cursor: pointer;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
}

#contact-form-form>button:hover {
    background-color: var(--primary-color-hover);
}

p#form-submission-successful {
    border: 5px solid green;
    color: green;
    line-height: 1.35;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    padding: 10px;
}