*{
    box-sizing:border-box;
    }
body{
    font-size:16px;
    color:#333333;
    font-family: 'Roboto', sans-serif;
   
    }
.offer-name {
    text-align: center;
}
.offer-image img {
    display: block;
    width: 350px;
    margin: 50px auto 0;
}
.form__wrapp{
    display:flex;
    flex-wrap:wrap;
    }
.container{
    width:100%;
    margin:auto;
    padding:45px 15px 0px 15px;
    
    }
.form-group{
    width:100%;
    margin-top:19px;
    }
.form-control{
    display:block;
    padding-left:15px;
    width:100%;
    height:50px;
    margin-top:3px;
    border:1px solid #000000;
    font-size:18px;
    transition: all .3s;
    }
.form-control:focus,.form-control:hover{
    border-color:#1AF16C;
    outline:none;
    }

.form-control::placeholder{
     color:#333333;
    }
.country_select {
    position:relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    }

.select{
    position:relative;
    height: 1px;
    }

.label{
    font-weight:300;
    }
.country_select > option:hover {
        background-color:#1AF16C;
    }


.btn-buy{
    display:block;
    height:70px;
    width:100%;
    border:none;
    font-size:30px;
    background: linear-gradient(90deg, #07967E 0%, #1AF16C 100%);
    text-transform:uppercase;
    color:#ffffff;
    transition: all .3s;
    }
.btn-buy:hover{
    cursor: pointer;
    }

@media screen and ( min-width : 768px){
    .container{
            width:547px;
        }
    }

@media screen and ( max-width: 425px) {
    .offer-image img {
        width: 270px;
    }
    .container {
        padding-top: 20px;
    }
}