*{
    box-sizing: border-box;
}
body{
    margin: 0%;
    padding: 0%;
}
header{
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom , rgb(168, 195, 245) , rgb(255, 206, 214) );
    display: flex;
    justify-content: center;
    align-items: center;
}
.innerheader{
    width: 65%;
    height: 85%;
    background-color: rgba(245, 247, 255, 0.85);
    border-radius: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.leftside{
    width: 40%;
    height: 80%;
    background-image: url('WhatsApp Image 2022-12-08 at 08.14.31.jpeg');
    background-size: cover;
    border-radius: 10px;
}
.rightside{
    width: 50%;
    height: 90%;
    padding-bottom: 20px;

}
.title{
    font-size: 56px;
    color: #2D2D2D;
    line-height: 0px;
}
.text{
    font-size: 24px;
    font-weight: 400;
    color: #1F1249;
    font-family: sans-serif;
    line-height: 30px;
}
.parent{
    width: 100%;
    height: 50%;
}
input{
    width: 100%;
    height: 14%;
    margin-top: 10px;
    display: flex;
flex-direction: row;
align-items: center;
padding: 8px 20px;
border: 1px solid #DBE3FF;
border-radius: 10px;
background: #FFFFFF;
}
.btn1{
    width: 100%;
    height: 16%;
    margin-top: 20px;
    background: linear-gradient(113.87deg, #2663DF 14.81%, #758FF0 88.76%);
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight:500;
    font-size:16px;
    color: white;
    box-shadow: 0px 6px 18px #9CADF2;
    transition: 1s;
}
.btn2{
    width: 100%;
    height: 16%;
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: linear-gradient(113.87deg, rgba(38, 99, 223, 0.1) 14.81%, rgba(117, 143, 240, 0.1) 88.76%);
    font-weight:500;
    font-size:16px;
    color: black;
    transition: 1s;
}
.btn1:hover{
    cursor: pointer;
    transition: 1s;
    background: linear-gradient(113.87deg, #0d54e2 14.81%, #677dcf 88.76%);
}
.btn2:hover{
    cursor: pointer;
    background-color: rgb(228, 217, 217);
    transition: 1s;
}
@media (max-width: 600px) {
    .innerheader{
        width: 80%;
        height: 90%;
        display: block;
        padding-bottom: 20px;
    }
    .leftside{
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin: 30px auto;
    }
    .rightside{
        width: 100%;
        height: 70%;
        padding: 0 10px;
    }
    .title{
        font-size: 36px;
        text-align: center;
    }
    .text{
        font-size: 18px;
        text-align: center;
    }
    .btnsparent{
        width: 100%;
        height: 50%;
        display: block;
    }
    .btn1{
        width: 90%;
        height: 20%;
        margin: 10px 5%;
    }
    .btn2{
        width:  90%;
        height: 20%;
        margin: 5px 5%;
    }
}