*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.container{
    width: 80%;
    height: 100vh;
    margin: auto ;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.container .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    height: 80vh;
    width: 40%;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 10px 0 0 10px;
}
.container .right{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    height: 80vh;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 0 10px 10px 0;
}

.right .logo{
    display: flex;

}
.right .form{
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.left .welcome, .create-h1{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}
.left .left-p, .right .right-p{
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    color: black;
    opacity: 0.4;
    text-align: center;
}

.signIn .signInButton, .signUpButton{
    padding: 10px 60px;
    border-radius: 50px;
    background-color: rgb(75, 75, 255);
    margin: 60px 0;
    color: white;
    font-size: 14px;
    border: none;
    font-weight: 600;
    cursor: pointer;

}
.logo .span{
    border: 0.2px solid black;
    padding: 10px;
    margin-left: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.form .input{
    font-size: 20px;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    margin: 10px 0;
    background: rgba(0, 0, 0, 0.06);
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    width: 400px;
}

