*{
    margin: 0;
    padding: 0;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;

}
.container{ 
display: flex;
height: 100vh;
overflow: hidden;
}

/* one */
.one{
    background-color: rgb(235,79, 79);
    width: 32%;
    padding: 20px;
    height: 100%;
 }
.content{
    margin: 66px  0 0 60px;
    padding-right:73px ;
}
.content h1{
    color: white;
    font-size: 49px;
    font-weight: bold;
}
.content p{
    font-size: 20px;
    color: white;
    line-height: 30px;

}
/* two */
.two{
    flex: 1;
    background-color:#f7f7fa;
    padding: 80px 10px 10px 10px;
    height: 100vh;
    
}
.content2{
    padding: 30px 10px 10px 10px;
    max-width: 380px; 
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: space-between;
    height: 85%;
}
.top-content{
    display: flex;
    flex-direction: column;
    gap :20px;
    width: 100%;
}
.top-content h1{
    text-align: center;
}
label{
    font-size: 13px;
    color: grey;
}
input{
    width: 92%;
    padding: 15px 12px;
    border-radius:10px ;
    border: 1px solid rgb(0, 119, 255);
    margin-top: 5px;
}
button{
    border-radius: 10px;
    padding:12px 18px ;
    border: none;
    background-color: rgba(128, 128, 128,0.7);
    text-align: center;
    color: white;
    cursor: not-allowed;
    font-weight: 900;
}
/* botm part */
.botm-content{
    display: flex;
    padding: 16px 5px 16px 12px;
    background:linear-gradient(139.4deg, #fcedd8 28.54%, #f5c5c6 104.43%);
    border-radius: 16px;
    border: 1px solid #ecedff;
    justify-content: center;
    align-items: center;
}
#get-app{
    margin-top: 8px;
    padding: 5px 6px;
    width: 87px;
    border-radius:16px;
    border: 1px solid black;
    color: black;
    background-color: transparent;
    cursor: pointer;
}
@media(max-width:770px){
    .one{
        display: none;
    }
    .two{
        padding-top:40px 10px 10px 10px ;
    }
}
