/* Container inside the white card */
.torf-contact-form {
    width: 100%;
    max-width: 420px;          /* adjust to taste */
    margin: 0 auto;
}

/* Each row */
.torf-contact-form .torf-field {
    margin-bottom: 18px;
}

/* Inputs / textarea fill the box width */
.torf-contact-form input[type="text"],
.torf-contact-form input[type="email"],
.torf-contact-form textarea {
    box-sizing: border-box;
    width: 100%;
    display: block;
    padding: 16px 18px;
    border-radius: 6px;
    border: 1px solid #dde3ea;
    background: #ffffff;
    font-size: 16px;
}

/* Remove resize handle to keep the look clean (optional) */
.torf-contact-form textarea {
    resize: none;
    min-height: 150px;
}

/* Button row aligns to the right edge of the card */
.torf-contact-form .torf-submit {
    margin-top: 10px;
    text-align: right;
}

/* Green rounded button */
.torf-contact-form .torf-submit button {
    border: none;
    border-radius: 999px;
    background: #35b66b;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 36px;
    cursor: pointer;
}

/* Optional hover */
.torf-contact-form .torf-submit button:hover {
    background: #2ba25e;
}
