body {
    width: 60%;
    height: 100vh !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    /* ou altura que você quiser */
    color: white;
    padding: 20px;
    background-color: #1e1e2e !important;

}

.form-login-right {
    display: flex;
    background-color: #2a2b3a !important;
    border-radius: 10px !important;
    overflow: hidden;
    width: 60%;
}

.lado-logo {
    background-color: #fff;
    width: 50%;
}

.lado-form {
    padding: 25px;
    width: 50%;
}

.login {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #000000;
    color: #fff;
    justify-content: center;
    /* Alinha horizontalmente */
    align-items: center;
    /* Alinha verticalmente */
    height: 90vh;
    /* Altura total da tela */
}

.input-login {
    width: 100% !important;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 10px;
}

.div-input label {
    font-size: 13px;
}



.btn-login {
    background-color: #12248a;
    padding: 9px;
    border-radius: 8px;
    width: 100%;
    transition: 500ms linear;
    margin-top: 12px;
    border: none;
    color: #fff;
}

.btn-login:hover {
    background-color: #0f1c66;
}

/* Responsividade */
@media (max-width: 768px) {

    .lado-logo {
        display: none;
        width: 100% !important;
    }

    .form-login-right {
        background-color: #2a2b3a !important;
        border-radius: 10px !important;
        overflow: hidden;
        width: 100%;
    }

    .lado-form {
        padding: 25px;
        width: 100%;
    }
}