@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{
    width: 100vw;
    height: 100vh;
    display: flex;
}


/* left-container */
.left-container{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.left-container h1{
    margin: 50px;
    font-size: 2.5rem;
}
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: 5px;  
    padding: 5px 0;
    position: relative;
   
}
.input-box input{
    padding: 20px 70px;
    border-radius: 50px;
    border: none;
    outline: none;
    box-shadow: 0 0 10px purple;
    border: 1px solid blueviolet;
    font-size: 18px;
}
.input-box i{
    position: absolute;
    font-size: 1.8rem;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: purple;
}
.input-box span{
    padding: 5px 25px;
    color: red;
    font-size: 13px;
}
.check{
    display: flex;
    font-size: 14px;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.check input{
    display: none;
}
.check span{
    width: 18px;
    height: 18px;
    border: 2px solid purple;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    transition: 0.3s ease;
}
.check input:checked + span{
    background: linear-gradient(135deg, purple, blueviolet);
    border: none;
}
.check input:checked + span::after{
    content: '\2714';
    color: #fff;
    position: absolute;
    left: 3px;
    top: -1px;
}

.check a{
    text-decoration: none;
    color: purple;
}
.check:hover a{
    text-decoration: underline;
}

/* input[type="checkbox"] {
  accent-color: rgb(138, 43, 226, 18);
  width: 15px;
  height: 20px;
  cursor: pointer;
} */
.btn{
width: 30%;
height: 50px;
border-radius: 50px;
border: none;
background: linear-gradient(120deg, purple, blueviolet);
margin-top: 30px;
font-size: 20px;
font-weight: 600;
color: #fff;
transition: all 0.2s ease;
}
.btn:hover{
    cursor: pointer;
    transform: scale(1.02);
}
.reg{
    margin-top: 15px;
    font-size: 14px;
}
.reg a{
    color: purple;
    text-decoration: none;
}
.reg:hover a{
    text-decoration: underline;
}

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