@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'noto sans';
}

.main{

    width: 100vw;
    height: 100vh;
    background: #E2ce1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left{
    
    width: 304px;
    height: 555px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #0c0c0c;
    border-radius: 20px 0 0 20px;
    padding: 10px;
    
}

img{
    max-height: 10%;
}

.left>h1{
    color: #faf9f9;
    
}
.left>h2{
    color: ivory;
    font-weight: 400;
    font-style: inherit;
}

.left>h3{
    color:#faf9f9;
    font-weight: 10;
    padding: 10px;
}

.left>h4{
    color: #faf9f9;
    font-style: normal;
    font-weight: normal;
}

.btn-left{
    width: 60%;
    padding: 16px 0px;
    margin: 25px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    background: #0a0a0a;
    border-color: #fff;
    border-width: 3px;
    cursor: pointer;

}
    
.rigth{
    
    width: 640px;
    height: 555px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fefaa1;
    border-radius: 0 20px 20px 0;
    padding: 20px;
}


.rigth > h1{
    color: #121313;
    font-weight: 800;
}

.rigth> h2{
    color: #101111;
    font-weight: 500;
    
}

.textfield{
    
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 10px 0px;
    position: relative;

}

.textfield > i{
position:absolute;
padding: 10px;
font-size: 18pt;
}

.textfield > input{
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #d1db44;
    color: #d6ebebde;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #3b899c56;
    outline: none;
    border: 2px solid transparent;

}

.textfield > input::placeholder{
    color: #16151594;
    padding-left: 20px;
    
}

input:focus{
    border-color: #90a838;
   
}

.textfield > label{
    color: #131312;
    margin-top: 10px;
    margin-bottom: 10px;

}

.btn-login-right{
    width: 100%;
    padding: 16px 0px;
    margin: 25px;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0a0a0a;
    background-attachment: #080808;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #0f0f0f;

}

.btn-login{
    width: 60%;
    padding: 16px 0px;
    margin: 25px;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    color: #181817;
    background-attachment: #222221;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #0f0f0f;

}