*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    overflow: hidden;

}
.container-fluid{
    display: flex;
    align-items: center;
    margin-inline: 4rem;
}

.container-fluid nav{
    margin-left: auto;
    margin-right: 1rem;
}

.container-main{
    width:100vw;
    height: 100vh;
    display: flex;
    align-items: center;
}

.container-main>div{
    width:48%;
    height: 100%;
}

.leftside{
    width:60% !important;
    border-top-right-radius: 35rem;
    border-bottom-right-radius:17rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:1rem;
    padding-left:7rem;
    background-image:linear-gradient(80deg,#00808018,50%,#72f0f018)
}

.leftside h1{
    width: 70%;
    font-size: 3rem;
    margin-top: -10rem;
}

.leftside h1 span{
    color:#008080
}

.leftside h4{
    width:70%;
    line-height: 24px;
}

.rightside{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top:-11%;
    padding-left: 2rem;;
}

.rightside h3{
    font-size: 1.4rem;
}

.rightside>span{
    font-size: .9rem;
}

.rightside form{
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap:.4rem;
}

form>div{
    display: flex;
    flex-direction: column;
    gap:.2rem;
    width:60%;
}

form>div label{
    font-size: .9rem;
    color:#008080;
    font-weight: 600;
}

form>div input{
    width:20rem;   
    padding:.5rem 1rem;
}

.confirmtnp{
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
}

.confirmtnp input{
    width: max-content;
}

.confirmtnp span{
    width: max-content;
    font-size: .8rem;
}

.signupbutton button{
    width:max-content;
    padding:.7rem 2rem;
    background-color: #008080;
    color:white;
    border: 1px solid #005050;
}

.signwithdiff{
    width:100%;
    padding-top: 2rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    position: relative;
}

.signwithdiff::before{
    content: '';
    position:absolute;
    top:1.1rem;
    width: 70%;
    height: 1px;
    background-color: black;
}

.signwithdiff button{
    display: flex;
    align-items: center;
    gap:.3rem;
    padding:.6rem .5rem;
    background-color: #0088880e;
    border: 2px solid #008080;
}
