/* ================================
    Forms
================================ */
.bm-form {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    background-color: #f3f3ff;
    padding: 40px;
    border-radius: 10px;
}

.bm-form .col-1 {grid-column: span 1;}
.bm-form .col-2 {grid-column: span 2;}
.bm-form .col-3 {grid-column: span 3;}
.bm-form .col-4 {grid-column: span 4;}
.bm-form .col-5 {grid-column: span 5;}
.bm-form .col-6 {grid-column: span 6;}
.bm-form .col-7 {grid-column: span 7;}
.bm-form .col-8 {grid-column: span 8;}
.bm-form .col-9 {grid-column: span 9;}
.bm-form .col-10 {grid-column: span 10;}
.bm-form .col-11 {grid-column: span 11;}
.bm-form .col-12 {grid-column: span 12;}

:focus {
    outline: none;
}

::placeholder {
    color: #000;
    opacity: .5;
}

::-ms-input-placeholder {
    color: #000;
    opacity: .5;
}

input[type=week],
input[type=url],
input[type=time],
input[type=password],
input[type=search],
input[type=number],
input[type=date],
input[type=color],
input[type=month],
input[type=datetime-local],
input[type=text],
input[type=email],
input[type=tel] {
    width: 100%;
    color: #000;
    font-size: 18px;
    height: 45px;
    padding: 0 20px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    font-family: "Roboto", sans-serif;
}

input[type=number] {
    padding-right: 10px;
}

select {
    width: 100%;
    color: #000;
    height: 45px;
    font-size: 18px;
    padding: 0 20px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    font-family: "Roboto", sans-serif;
}

textarea {
    width: 100%;
    color: #000;
    height: 150px;
    font-size: 18px;
    padding: 20px;
    border-radius: 5px;
    border: unset;
    background: #fff;
    resize: vertical;
    font-family: "Roboto", sans-serif;
    border: 1px solid #dcdcdc;
}

button {
    font-size: 18px;
    background-color: #0000fe;
    width: 100%;
    color: #fff;
    line-height: 45px;
    padding: 0 20px;
    border: unset;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    transition: background-color .2s ease;
}

button:hover {
    background-color: #0000b8;
}

/* ================================
    @media's
================================ */
@media screen and (max-width: 1600px) {
    .bm-form {
        gap: 17px;
        padding: 34px;
    }

    input[type=week],
    input[type=url],
    input[type=time],
    input[type=password],
    input[type=search],
    input[type=number],
    input[type=color],
    input[type=month],
    input[type=datetime-local],
    input[type=date],
    input[type=text],
    input[type=email],
    input[type=tel] {
        font-size: 17px;
        height: 37px;
        padding: 0 17px;
    }

    select {
        height: 37px;
        font-size: 17px;
        padding: 0 17px;
    }

    textarea {
        height: 130px;
        font-size: 17px;
        padding: 17px;
    }

    button {
        font-size: 17px;
        line-height: 37px;
        padding: 0 17px;
    }
}

@media screen and (max-width: 1400px) {
    .bm-form {
        gap: 15px;
        padding: 30px;
    }

    input[type=week],
    input[type=url],
    input[type=time],
    input[type=password],
    input[type=search],
    input[type=number],
    input[type=color],
    input[type=date],
    input[type=month],
    input[type=datetime-local],
    input[type=text],
    input[type=email],
    input[type=tel] {
        font-size: 16px;
        padding: 0 15px;
    }

    select {
        font-size: 16px;
        padding: 0 15px;
    }

    textarea {
        height: 110px;
        font-size: 16px;
        padding: 15px;
    }

    button {
        font-size: 16px;
        padding: 0 15px;
    }
}

@media screen and (max-width: 1199px) {

}

@media screen and (max-width: 991px) {

}

@media screen and (max-width: 767px) {
    .bm-form .col-1,
    .bm-form .col-2,
    .bm-form .col-3,
    .bm-form .col-4,
    .bm-form .col-5,
    .bm-form .col-6,
    .bm-form .col-7,
    .bm-form .col-8,
    .bm-form .col-9,
    .bm-form .col-10,
    .bm-form .col-11,
    .bm-form .col-12 {grid-column: span 12;}
}