body{
    margin: 0;
    font-family: Noto Sans, sans-serif;
}
.main-login{
    width: 100vw;
    height: 100vh;
    display: flex;
    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{
    color: rgba(0,216,255,255);
}
.right-login{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.card-login{
    width: 60%;
    background-color: rgba(0,216,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.3);
}
.card-login > h1{
    color: rgba(0,216,255,255);
    font-weight: 800;
    margin: 0;
}
.textfield{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin: 10px 0px;
}
.textfield > input{
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background-color: rgba(0,216,255,0.1);
    color: #f0ffffde;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}
.textfield > label{
    color : #f0ffffde;
    margin-bottom: 10px;
}
.textfield > input:focus{
    border: 1px solid rgba(0,216,255,255);
}
.textfield > input::placeholder{
    color : #f0ffff94;
}
.btn-login{
    width: 100%;
    padding: 16px 0px;
    border-radius: 8px;
    border: none;
    margin: 25px;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    background: rgba(0,216,255,255);
    color: #201b2c;
    cursor: pointer;
    /*box-shadow: 0px 10px 40px rgba(0,0,0,0.3);*/
    box-shadow: 0px 10px 40px #005666;
    transition: all 0.6s ease-in-out;
}   
.left-login_img{
    width: 34vw;
}
a{
    text-decoration: none;
    color: #f0ffffde;
}
a:hover{
    color: rgba(0,216,255,255);
}