body, html {
    padding: 0;
    margin: 0;
    width: 100% !important;
    height: 100% !important;
    overflow-x: hidden;
    color: #1891a2;
    font-family: 'Sanchez-Regular' !important;
}

#formLogin ul li {
    list-style: none;
}

.login-container {
    width: 100%;
    height: 100%;
    background-image: url(https://colmena.topbrand.interactiva.net.co/media/assets/fondo_register_2.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    background-color: #1891a2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button-login {
    min-width: auto;
    height: auto;
    color: #1891a2;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    overflow: hidden;
    border-radius: 5px;
    border: none;
    background: #f9c71b;
    text-decoration: none;
    font-size: 14px;
    font-size: initial;
    font-family : inherit;
}

.container-form {
    display: flex;
    flex-direction: column;
    padding: 70px;
    background: white;
    border-radius: 5rem;
}

.label-login {
    background: #1891a2;
    width: 135px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    border-radius: 1rem;
    color: #000;
}

#emailLogin {
    border: 1px solid #1891a2;
    border-radius: 1rem;
    width: 181px;
    text-indent: 8%;
    margin-left: -10px;
}

.form-login-container {
    display: flex;
}

.text-login {
    text-align: center;
}

.error-container {
    width: 100%;
    color: #e82929;
}

.login-buttons-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

@media(max-width:600px) {
    #emailLogin {
        width: 100%;
        margin: 0px;
        height: 20px;
    }

    .label-login {
        margin-bottom: 10px;
        width: 100%;
    }

    .form-login-container {
        flex-direction: column;
    }

    .container-form {
        padding: 50px 20px;
        width: 80%;
    }
}