﻿.form-of-site {
    margin: 80px auto;
}

    .form-of-site > div {
        box-shadow: 0 0 10px 1px lightgray;
        width: 90%;
        margin: auto;
        border-radius: 5px;
        padding: 10px;
        max-width: 1200px;
        overflow: hidden !important;
    }

        .form-of-site > div > h1 {
            font-size: 18px;
            margin: 10px auto;
            text-align: center;
        }

        .form-of-site > div > form {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

.box-of-form {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #005f9b;
    border-radius: 5px;
}

    .box-of-form > label,
    .box1-of-form > label {
        font-size: 15px;
        display: block;
    }

    .box-of-form > span,
    .box1-of-form > span {
        display: block;
        text-align: center;
        color: red;
        margin-top: 5px;
    }

.input-of-box {
    background-color: #cdebff9c;
    padding: 5px;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 5px;
    border-radius: 5px;
}

    .input-of-box > i {
        font-size: 20px;
        transform: rotateY(180deg);
        margin-left: 5px;
        color: #013166;
    }

    .input-of-box > input,
    .input-of-box > select {
        width: 100%;
        background-color: transparent;
        padding: 5px;
        border: none;
        outline: none;
        font-size: 16px;
        direction: rtl !important;
        text-align: center;
    }


    .input-of-box > textarea {
        height: 100px;
        border: none;
        background-color: transparent;
        padding: 5px;
        font-size: 16px;
        width: 100%;
        resize: none;
        outline: none;
    }

.box1-of-form {
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #005f9b;
    border-radius: 5px;
}

    .box1-of-form > div {
        background-color: #cdebff9c;
        margin-top: 5px;
        border-radius: 5px;
        display: flex;
    }

        .box1-of-form > div > textarea {
            height: 100px;
            border: none;
            background-color: transparent;
            padding: 5px;
            font-size: 16px;
            width: 100%;
            resize: none;
            outline: none;
        }

.btn-of-form {
    display: flex;
    justify-content: center;
    width: 100%;
}

    .btn-of-form > button {
        display: block;
        margin: 20px auto;
        font-size: 18px;
        width: 200px;
        text-align: center;
        color: #FF165D;
        border-radius: 4px;
        transition: background-color 1s, color 1s, border 1s;
        cursor: pointer;
        background-color: white;
        border: 1px solid #FF165D;
    }

        .btn-of-form > button:hover {
            background-color: #FF165D;
            color: white;
            border: 1px solid #FF165D;
        }


.box2-of-form {
    width: 100%;
    margin: 10px 0;
    border: 1px solid #005f9b;
    border-radius: 5px;
    padding: 10px;
}

    .box2-of-form > div {
        min-height: 177px !important;
        border: none !important;
        padding: 0 !important;
        width: 100%;
        height: 100%;
        border-radius: 5px;
        background-color: #e0f3ff !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .box2-of-form > div > div {
            margin: 0 !important;
        }

@media only screen and (min-width: 900px) {
    .form-of-site {
        margin: 100px auto;
    }

    .box-of-form {
        width: 46%;
    }

        .box-of-form > span,
        .box1-of-form > span {
            height: 22px
        }

    .box2-of-form {
        width: 46%;
    }
}
