/* Contact */









/* Contact form */

form {
    border-radius: 20px;
    background-color: rgba(168, 158, 148, 1);
    padding: 20px 0;
    max-width: 900px;
    margin: auto;
}

input[type=text], input[type=email], textarea {
    min-width: 60%;
    max-width: 700px;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    box-sizing: border-box;
    margin: 6px 16px 15px 16px;
    font-family: Arial, Helvetica, sans-serif;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

input[type=submit] {
    border-radius: 8px;
    border-style: none;
    padding: 5px 10px;
    background-color: rgba(109, 91, 91, 1);
    color: white;
    font-size: 18px;
    transition: background-color 400ms linear 200ms, color 400ms linear 200ms;
}

input[type=submit]:hover {
    background-color: white;
    color: rgba(0, 0, 0, 1);
}

input[type=submit]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}







/* Turnstile widget */

.cf-turnstile {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}







/* Form status messages */

#form-status {
    margin: 25px 30px 0;
    font-size: 18px;
    min-height: 1.2em;
}

#form-status.success {
    color: rgba(0, 0, 0, 1);
}

#form-status.error {
    color: #c62828;
}