.input-login
{ 
    color: var(--white);
    width: 100%;
    padding: 3px 0px 3px 5px;
    background: var(--background);
    height: 34px;
    outline: 0;
    padding-left: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border-radius: 0px;
    /*
    border-left: 0px solid var(--theme-border);
    border-right: 1px solid var(--theme-border);
    border-top: 1px solid var(--theme-border);
    border-bottom: 1px solid var(--theme-border);
    */
    border: none;
    border-bottom: 2px solid var(--light);
    -webkit-box-shadow: inset 0px 0px 0px var(--background);
	box-shadow: inset 0px 0px 0px var(--background);
} 

.input-login:hover
{ 
    background: var(--background);
    border: none;
    border-bottom: 2px solid var(--color-a-safetech);

} 

.container-form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0px;
}
#column-form {
    flex: 1 1 35%;
    padding: 0px;
    box-sizing: border-box;
}

#column-image {
    flex: 1 1 65%;
    padding: 0px;
    box-sizing: border-box;
}


#div_vendors div a{
    background-color: var(--background);
    color: white;
    text-decoration: none;
    padding-top:10px;
    padding-bottom:10px;
    padding-left: 15px;
    padding-right: 15px;
    display: block;
    cursor: pointer;
    z-index: 10000;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    border-bottom: 0.5px solid var(--light);
}

#div_vendors div a:hover{
    background: #593A97;
    background: linear-gradient(90deg, rgba(89, 58, 151, 1) 0%, rgba(232, 62, 51, 1) 93%);
    color: #FFFFFF;
}

#div_logo
{
    width: 240px; 
    height: auto; 
    z-index: 1000; 
    position:absolute; 
    left: calc(17.5% - 120px); 
    top: 80px;
}

#div_footer
{
    position: absolute; 
    bottom: 5px; 
    width: 300px; 
    padding: 10px; 
    left: calc(17% - 150px);
    color: gray; 
    font-size: 12px; 
    text-align: center;
}

.code-inputs 
{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 50px;
}
.code-inputs input {
    width: 40px;
    height: 50px;
    font-size: 2rem;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.code-inputs input:hover {
    
    border: 1px solid #40affb;
}

.code-inputs input:focus {
    outline: none;
    border-color: #40affb;
    box-shadow: 0 0 5px rgba(64, 175, 251, 0.5);
}


@media (max-width: 1100px) {
    #column-form {
        flex: 1 1 100%;
    }
    #column-image{
        visibility: hidden;
    }

    #div_logo
    {
        width: 240px; 
        height: auto; 
        z-index: 1000; 
        position:absolute; 
        top: 80px;
        left: calc(50% - 120px); 
    }

    #div_footer
    {
        position: absolute; 
        bottom: 5px; 
        width: 300px; 
        padding: 10px; 
        left: calc(50% - 170px);
        color: gray; 
        font-size: 12px; 
        text-align: center;
    }
}