* 
{
    box-sizing: border-box;
}

body
{
    font-family: 'Open Sans';
    margin:  0px;
    padding: 0px;
}

#container
{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    overflow: hidden;
}

#login
{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.campo
{
    margin: 5px;
    width: 300px;
    height: 30px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid #49266c;
    outline: none;
	font-size:16px;
}

#logo
{
    width: 50%;
    height: 100%;
    background-color: #49266c;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
}

.miniLogo
{
    width: 25%;
}

#imgLogo
{
    width: 100%;
    padding: 0;
    margin: 0;
    background-repeat: no-repeat;
    filter: brightness(1.1);
}

#imgLogo1
{
    width: 60%; 
	max-width:550px;
    background-repeat: no-repeat;
    filter: brightness(1.1);
    mix-blend-mode: multiply;
    margin-bottom: 10px;
}

#parrafo
{
    color: white;
    font-size: 12px;
    font-family: "adobe-clean", sans-serif;
    text-align: center;
    margin-bottom: 30px;
}

#btnIngresar
{
    margin-top: 10%;
    border-radius: 10px;
    background-color: #49266c;
    color: white;
    padding: 8px 105px;
    font-size: small;
}

#message
{
    margin-top: 10px;
    font-size: small;
    font-family: "adobe-clean", sans-serif;
    text-align: center;
}

.msgError
{
    color: red;
}

.campoError
{
    border-bottom: 2px solid red;
}

.msgCorrecto
{
    color: green;
}

.campoCorrecto
{
    border-bottom: 1px solid green;
}

.input-wrapper
{
    position: relative;
}

.material-symbols-outlined 
{
    font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 48
}

#iconView
{
    position: absolute;
    right:  2px;
    color: #49266c;
}

#iconView:hover
{
    cursor: pointer;
}

#alertMessage
{
    justify-content: center;
    flex-direction: row;
}

#iconVerified
{
    margin-top: 5px;
}

@media (min-width: 1018px) and (max-width: 1400px)
{
    #login
    {    
        margin-left: 10%;
        margin-right: 10%;
    }

    #parrafo
    {
        margin-bottom: 5%;
    }

    #imgLogo1
    {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1017px)
{
    #login
    {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .campo
    {
        margin: 5px;
        width: 250px;
        height: 20px;
        border-top: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid #49266c;
        outline: none;
    }

    #btnIngresar
    {
        margin-top: 5%;
        border-radius: 10px;
        background-color: #49266c;
        color: white;
        padding: 8px 95px;
        font-size: small;
    }

    #logo
    {
        width: 60%;
        height: 100%;
    }

    #parrafo
    {
        font-size: 9px;
        margin-bottom: 2%;
    }

    #imgLogo
    {
        width: 120px;
        height: 50px;
    }

    #imgLogo1
    {
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767px)
{
    #login
    {
        width: 25%;
        margin-left: 12%;
    }

    .campo
    {
        margin: 5px;
        width: 200px;
        height: 20px;
        border-top: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid #49266c;
        outline: none;
    }

    #btnIngresar
    {
        margin-top: 7%;
        border-radius: 10px;
        background-color: #49266c;
        color: white;
        padding: 8px 75px;
        font-size: small;
    }

    #logo
    {
        width: 55%; /*370px*/
        height: 100%;
        margin-left: 10%;
    }

    #parrafo
    {
        font-size: 8px;
        bottom: 13px;
    }
    #imgLogo1
    {
        width: 100%;
    }
}

@media (min-width: 0px) and (max-width: 575px)
{
    #container
    {
        flex-flow: row wrap;
    }

    #logo
    {
        width: 100%;
        height: 20%;
        left: 0px;
    }

    #login
    {
        width: 90%;
        height: 80vh;
    }

    #parrafo
    {
        font-size: 10px;
        bottom: 10%;
    }

    #imgLogo
    {
        bottom: 20px;
    }

    #imgLogo1
    {
        width: 100%;
    }
}