@import url('https://fonts.googleapis.com/css2?family=Arvo:ital@1&display=swap');
body {
    font-family: 'Arvo', serif;
}

body * {
    box-sizing: border-box;
}
body {

    display: block;
    
    margin: 0px;
    
    margin-top: 0px;
    
    margin-right: 0px;
    
    margin-bottom: 0px;
    
    margin-left: 0px;
    
    }

.main-login{
    width: 100vw;
    height: 100vh;
    background-color: #201b2c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.left-login > h1 {
    font-size: 3vw;
    color: #77ffc0
}

.left-login-image{
    width: 35vw;
}
.right-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.card-login{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 35px 35px;
    background:#2f2841;
    border-radius: 20px;
    box-shadow: 0px 10px 45px #00000056;
}

.card-login > h1 {
    color:#00ff88;
    font-weight: 800;
    margin: 0;
}

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

}

.textfield > input{
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #514869;
    color: #f0ffffde;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

.textfiel > label {
    color:#f0ffffde;
    margin: bottom 10px;
}

.textfiel > input::placeholder{
    color: #f0ffff94
}

.btn-login{
    width: 100%;
    padding: 15px 0px;
    margin: 2px;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2b134b;
    background: #00ff88;
    cursor: pointer;
    box-shadow: 0px 12px 50px -12px #00ff8052;
}

@media only screen and (Max-width: 950px){
    .card-login{
        width: 85%;

    }
}

@media only screen and (Max-width: 600px){
    .main-login{
        flex-direction: column;
    }
    .left-login > h1{
        display: none;
    }
    
    .left-login{
        width: 100%;
        height: auto;
    }
    .right-login{
        width: 100%;
        height: auto;
    }
    
    .left-login-image{
        width: 50vw;
    }

    .card-login{
        width: 90%;
    
    }
}
