*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'ABeeZee', sans-serif;
    background: #F5F5F5;
    overflow: hidden;
   
}

a{
    text-decoration: none;
    color: #02AA6E;
}

.container{
    display: grid;
    grid-template-columns: 40% 58%;
    column-gap: 2%;
    width: 90%;
    margin: auto;
    
}

.left{
    height: 100vh;
     width: 100%;
}
.left div{
    margin: -5% auto;
}
img{
    width: 100%;
    height: 100vh;
}

.right{
    background-color: #ffff;
     display: flex;
     height: 100vh;
     width: 58vw;
    justify-content: center;
    align-items: center;
}

.input-container div{
    margin: 30px 0;
}

input{
    width: 30rem;
    height: 50px;
    background: #F5F5F5;
    border-radius: 10px;
    border: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 16px;
    padding-left: 10px;
}

button{
    width: 30rem;
    height: 50px;
    background: #02AA6E;
    color: #ffff;
    border-radius: 10px;
    border: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 16px;
    cursor: pointer;
}
.top p{
    font-size: 14px;
    margin: 10px 0;
}
.bottom .new{
    margin-left: 25%;
}
.bottom span{
    font-size: 15px;
}

.bottom-signup{
    text-align: center;
}
