@font-face {
    font-family: oficina;
    src: url(fonts/BauhausRegular.ttf);
  }

body {
    margin: 0;
}

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

.main-login{
    width: 100vw;
    height: 100vh;
    background: rgb(0, 0, 0);
    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;
    font-family: oficina;
    color: white;
}

.left-login-image{
    width: 40vw;
}

.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: 30px 35px;
    background: black;
    border-radius: 20px;
    box-shadow: 0px 10px 40px rgba(37, 37, 37, 0.308);
}

.card-login > h1 {
    color: #ffffff;
    font-weight: 800;
    font-family: oficina;
    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: #ffffff;
    color: #000000;
    font-size: 12pt;
    font-family: oficina;
    box-shadow: 0px 5px 10px #e6dede49;
    outline: none;
    box-sizing: border-box;
}

.show-password {
    color: #000000;
    font-size: 12pt;
    cursor: pointer;
    margin-top: 10px;
    font-family: oficina;
}

.textfield > label {
    color: #ffffff;
    margin-bottom: 10px;
}

.textfield > input::placeholder{
    color: rgb(0, 0, 0);
}

.btn-login{
    width: 100%;
    padding: 16px 0px;
    margin: 25px;
    border: none;
    border-radius: 8px; 
    text-transform: uppercase;
    font-weight: 800;
    font-family: oficina;
    letter-spacing: 3px; 
    color: black;
    background: #afcece;
    cursor: pointer;
    box-shadow: 0px 5px 10px #e6dede49;
}

.btn-login:hover, .btn-login:focus {
    background: #8ab5c4;
    box-shadow: 0px 5px 10px #e6dede49;
}

@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%;
        right: auto;
    }

    .right-login{
        width: 100%;
        right: auto;
    }

    .left-login-image{
        width: 50vw;
    }
    .card-login{
        width: 90%;
    }
}