*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  } 

  section{

      margin: 50px;
    
  }
.container {
    border: 15px solid #fff;
    border-radius: 10px;
    display: flex;
    width: 90%;
    margin: auto;
    justify-content: center;
    background-color: #15181f;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: .4s all ease;
    scroll-behavior: smooth;
}
.container:hover{
    transform: translateY(-10px);
}



.container-form{
    flex: 1;
    display:  flex;
    padding-top:50px;
    padding-bottom:50px;
    align-items: center;
    justify-content: center;
}

.hr {
    border: 0;
    height: 1px;
    margin: 20px auto;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
}


.container-form form .input{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    width: 100%;
    padding: 15px;
    font-size: 10px;
    background-color:#2d343f ;
    outline: none;
    border: none;
    color: #edeff2;
    border-radius: 3px;
}

.container-form form .input::placeholder{
    color: #edeff2;
}

.container-form form p {
    text-align: center;
    font-weight: 800;
    font-size: 25px;
}

.container-form form select{
    
    margin:5px;
    width: 100%;
    padding: 10px;
    outline: none;
    border: none;
}

.container-form form p{
    color: #edeff2;
}

.container-form form a {
    font-size: 15px;
    display: inline-block;
    text-decoration:none;
    color: #edeff2;
    font-weight: 200;
    text-align: center;
}

input[type=checkbox]{
    margin:15px 20px;
    padding: 10px;
     }

.container-form form .btn{
    display: flex;
    margin: auto;
    width: 100%;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    background-color:#1a5855;
    color: #9c9c9c;
    font-weight: 800;
    outline: none;
    border: none;
    border-radius: 3px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: .2s all ease;
}



.container-form form .btn:hover{
    background-color:#079992;
    color: #edeff2;

}

.bxs-right-arrow-circle{
    text-align: left;
}

.img{
    background-image: url('form2.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    flex: 1;
    position: relative;
}


.img h3{

    color: #edeff2;
    text-align: left;
    font-size: 20px;
    position: absolute;
    bottom: 50px;
    left: 25px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;

}

@media screen and (max-width:1062px) {
    
    .img{
        flex: .6;
    }
}

@media screen and (max-width:900px) {
    
    .img{
        display: none;
    }

    .container{
        width: 80%;
    }

    section{
        margin: 10px;
    }
}

@media screen  and (max-width:480px){
    .container{
        width:100%;
        border: none;
    }

    .container-form form .input{
    
        width: 90%;
        
    }

    .container-form form .btn{
        width: 90%;
    }

}


