body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

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

.main-login {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: #00008B;
    padding: 0 16rem;
}

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

.left-login h1 {
    color: #ffffff;
    width: 31rem;
}

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

.card-login {
    min-width: 22.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 35px;
    background: #262633;
    border-radius: 20px;
    box-shadow: 0px 10px 40px #00000056;
}

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

.textfield {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    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;
}

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

.textfield input::placeholder {
    color: #f0ffff94;
}

.btn-login {
    width: 100%;
    padding: 16px 0px;
    margin: 25px;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;
    background: #00008B;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #00008B;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}



@media only screen and (max-width: 950px) {
    .main-login {
        padding: 2rem;
    }
    .card-login {
        width: 85%;
    }

}

@media only screen and (max-width: 600px){
    .main-login {
        flex-direction: column;
        padding: 2rem;
    }

    .left-login h1 {
        display: none;
    }

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

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



