@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "Poppins", sans-serif;
}
.container{
    display: flex;
    width: 100vw;
    height: 100vh;
}
/* left said */
.left-container{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.heading{
    width: 100%;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
}
.heading span{
    font-size: 15px;
}
form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.input-box{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
}
.input-box input{
    width: 100%;
    height: 60px;
    border-radius: 50px;
    border: none;
    border: 1px solid blueviolet;
    box-shadow: 0 0 10px purple;
    padding: 0 70px;
    font-size: 18px;
    outline: none;
}
.input-box i{
    position: absolute;
    left: 20px;
    top: 25%;
    font-size: 25px;
    color: purple;
}
.input-box span{
    padding: 5px 20px;
    color: red;
    font-size: 13px;
}
.check{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    gap: 5px;
    cursor: pointer;
    padding: 0 20px;
}
.check input{
    display: none;
}
.check span{
    width: 18px;
    height: 18px;
    border: 2px solid purple;
    border-radius: 5px;
    display: inline-block;
    position: relative;
}
.check input:checked + span{
    background: linear-gradient(135deg,purple, blueviolet);
    border: none;
}
.check input:checked + span::after{
    content: '\2714';
    color: #fff;
    position: absolute;
    left: 4px;
    top: -1px;
}
.check p{
    flex: 1;
}
.check a{
    text-decoration: none;
}
.btn{
    margin-top: 50px;
    width: 30%;
    height: 50px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, purple, blueviolet);
    font-size: 25px;
    color: #fff;
    transition: 0.3s all ease;
    cursor: pointer;
}
.btn:hover{
    transform: scale(1.02);
}
.span-tag{
    margin-top: 20px;
    font-size: 15px;
}
.span-tag a{
    color: purple;
    text-decoration: none;
}
.span-tag:hover a{
    text-decoration: underline;
}





/* right side */
.right-container{
    background: linear-gradient(135deg, purple, blueviolet);
    width: 40%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.right-container h1{
    font-size: 3rem;
    margin-bottom: 10px;
}
.right-container p{
    color: #f9f9f9;
    line-height: 2;
}