@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&display=swap');
*{
    padding: 0; margin: 0;
    box-sizing: border-box;
}
.work{
    background: #e2ebf0;
    height: 100vh;
}
.section h2{
    font-family: 'Montserrat', sans-serif;
   text-transform: uppercase;
    padding: 1.5rem 0;
    color: rgb(53, 53, 53);
    font-weight: 500;
    letter-spacing: 5px;
    text-align: center;
    font-size: 2rem;
    background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
   
    
}
.box-container{

    display: flex;
    justify-content: center;
    
    background:#e2ebf0;
    flex-wrap: wrap;
    
    }
    
    .box{
       
        height: 650px;
        width: 550px;
        background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
        box-shadow: 5px 10px 20px 0 gray;
        margin: 2rem 2rem;
       
        max-width: 500px;
        position: relative;
    }
.form-gorup{
    margin-left:5rem;
    margin-top:2rem;
    margin-bottom:2rem;
    border-radius: 2px;
}
.form input{
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
   width:80%;
}
a{
    margin-left:5rem;
   
    text-align: center;
    padding: .5rem 1rem;
    color: rgb(53, 53, 53);
    text-decoration: none;
    background: #e2ebf0;
  border-radius: 2rem;
  cursor: pointer;
    font-weight: 600;font-family: 'Montserrat', sans-serif;
}
.form-gorup p{
    color: rgb(53, 53, 53);
    font-weight: 500;font-family: 'Montserrat', sans-serif;
    margin-right:2rem;
    font-size: 1.3rem;
}
a:hover{
    color: #e2ebf0;
    background: rgb(53, 53, 53);
    transition: all 0.3s ease-in-out;
}
.box-container:hover{

}