/*
Theme Name: abovethatshop
Author: Massimo Sanna
Version: 1.0
*/

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
}

#contact-form input,
#contact-form textarea {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
}

#contact-form textarea {
    min-height: 140px;
}

#contact-form button {
    background: black;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
}

.success-message {
    color: green;
    margin-top: 20px;
}