.container {
    margin-top: 50px;
}

.contato {
    margin: 20px 0;
    display: flex;
}

.titulo {
    color: #41aed4;
    font-family: "Calibri_Bold";
    margin-top: 25px;
}

.margin-top {
    margin-top: 20px;
}

.form-input {
    width: 100%;
    border: none;
    outline: none;
    background-color: #f4f6fc;
    border-bottom: 1px solid #888;
    transition: border .5s;
    padding: 10px 0;
    color: #000054;
}

::placeholder {
    color: #000054;
    opacity: .8;
}

.color-blue {
    color: #000054;
}

.form-input:focus {
    border-bottom: 1px solid #000;
}

.button {
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 20px;
}

.button button {
    background-color: #f4f6fc;
    color: #000054;
    font-size: 20px;
    cursor: pointer;
    border: none;
}

@media screen and (orientation: portrait), (max-width: 1000px) {
    .mobile_none {
        display: none;
    }
    .contato {
        flex-direction: column-reverse;
    }
    .contato_img img {
        width: 100%;
    }
    .contato_txt {
        width: 100%;
    }
    .form-row {
        flex-direction: column;
        margin-top: 10px;
    }
    .grid {
        grid-template-columns: auto;
        grid-row-gap: 30px;
    }
}
