:root{
    --blue:#1B83DC;
    --hover:#1e6db3;
}

.container{
    width: 400px;
    float: left;
    margin-left: 8%;
    margin-top: 0rem;
}

.select{
    border: none;
    line-height: 55px;
    color: #acacac;
    background-color: #f0f0f0;
    font-size: 1.1rem;
    border-radius: 60px;
    height: 45px;
}
.circle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e88e6;
    clip-path: circle(70% at right -20%);
    z-index: -1;
}

.erro{
    color: red;
    font-size: 11;
    font-family: Arial, Helvetica, sans-serif;
}

.invalid-feedback.d-block{
    width: 390px;
}
img{
    width: 560px;
    height: 560px;
    float: right;
    margin-top: -2rem;
}

h2{
    font-size:38;
    font-family: Arial, Helvetica, sans-serif;
    color: gray;
    text-align: center;
}
.paragrafo{
    font-size: 13;
    color: gray;
    text-align: center;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: -1.5rem;
    margin-bottom: 0;
}

.input-field{
    width: 100%;
    height: 45px;
    background-color: #f0f0f0;
    margin:13px 0;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 .1rem;
}

.input-field input{
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.input-field input::placeholder{
    color: #aaa;
    font-weight: 500;
}

.input-field i{
    text-align: center;
    line-height: 55px;
    color: #acacac;
    font-size: 1.1rem;
    margin-top: -0.1rem;
}

.fa.fa-phone{
    transform: rotate(90deg);
}

button{
    margin-top: 25px;
    border:none;
    border-radius: 60px;
    padding: 8px;
    width: 100%;
    background: var(--blue);
    font-size: 18;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    margin: 0 auto 2rem auto;
    display: block;
    text-transform: uppercase;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type=number] { -moz-appearance:textfield; }

button:hover{
    background: var(--hover);
}

/* *********** MOBILE *********** */

@media screen and (max-width:1129px) {
    img{
        height: 320px;
        width: 320px;
    }
    .container{
        margin-bottom: 5rem;
    }
}

@media screen and (max-width:859px) {
    .container{
        margin-top: -3rem;
    }
}

@media screen and (max-width:454px) {
    .container{
        width: 300px;
        margin-left: 10%;
    }
}