body,
html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.content-general {
    display: flex;
    height: 100%;
}


.content-img {
    flex: 1;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #1F4570;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}


.subcontent-img {
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
    transition: transform 1s;
}

.imgs {
    width: 310px;
    height: 310px;
    align-items: center;
    display: flex;
    color: #FFFFFF;
    position: absolute;
    transform: translateX(0);
    opacity: 0;
    transition: opacity 1s, transform 1s;
}

.imgs:first-child {
    opacity: 1;
}


.content-login {
    flex: 1;
    background: #141414;
    flex-direction: column;
    display: flex;
    align-items: center;
    min-height: 100vh;
}


.container-login {
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    display: flex;
}


.login-box {
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 450px;
    border: 1px solid #383838;
    background: #1D1D1D;
}



#login {
    background: #1F4570;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    width: 330px;
    height: 50px;
    margin-top: 40px;
    margin-bottom: 25px;
}

#login:hover {
    background: #2762a2;
}


.form-control-container {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control-container-question {
    position: relative;
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}

.form-control.lg {
    padding: 10px;
    border: 1px solid #FFFFFF;
    background: #1D1D1D;
    border-radius: 5px;
    font-size: 16px;
    height: 50px;
    width: 330px;
    color: #FFFFFF;
}

.floating-label {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 15px;
    color: #CCCCCC;
    transition: all 0.3s ease-out;
    pointer-events: none;
}

.form-control:focus+.floating-label,
.form-control:not(:placeholder-shown)+.floating-label {
    top: -25px;
    font-size: 15px;
    color: #CCCCCC;
}


.container-logo-z {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-top: 120px;
}


.log-z {
    width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
}

.container-logo-my {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-top: 110px;
}


.log-m {
    width: 225px;
    height: 70px;
    display: flex;
    align-items: center;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #FFFFFF;
}

@media (max-width: 907px) {

    .content-general {
        display: block;
    }

}

@media (max-width: 550px) {

    .login-box {
        width: 360px;
    }

    .form-control.lg {
        width: 300px;
    }

    #login {
        width: 300px;
    }

}