
input, textarea, select {
    width: 100%;
    padding: 0 10px;
    height: 40px;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, .075);
    color: #727272 !important;
    font-size: 13px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    direction: rtl;
}

textarea {
    height: 100%;
}

input[type="checkbox"] {
    height: 20px;
    width: 20px;
}

input[type="radio"] {
    height: 20px;
    width: 20px;
}

button {
    width: 100%;
    padding: 10px;
    background: orange;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    padding: 10px 30px;
}


.contactus-container {
    max-width: 600px;
    margin: 15px auto;
    background: #fff;
    width: 100%;
}

    .contactus-container .contactus-header {
        padding: 10px;
        text-align: center;
        font-size: 24px;
        color: #333;
        border-bottom: 1px solid rgba(0, 0, 0, .075);
    }
    .contactus-container .contactus-body {
        padding: 10px;
    }


        .contactus-container .contactus-body .form {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }
            .contactus-container .contactus-body .form .field-container {
                width: 100%;
            }

            .contactus-container .contactus-body .form .field-row {
                margin: 0 0 10px 0px;
            }
            .contactus-container .contactus-body .form label {
                margin: 0 0 10px 0px;
                display: flex;
            }

.field-validation-error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}