

.contact-form>* {
    width: 100%;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid var(--secondary);
    border-radius: 5px;
}

.contact-form button {
    padding: 8px 16px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form .checkbox-wrapper {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: nowrap;
}

.contact-form button:hover {
    background-color: var(--primary-dark);
}

.contact-form label {
    font-weight: bold;
}

