/* Stilovi za loginForm.html - tema varijable */


/* Font za password polje */
@font-face {
    font-family: 'text-security-disc';
    src: url('../fonts/text-security-disc.eot');
    src: url('../fonts/text-security-disc.eot?#iefix') format('embedded-opentype'),
        url('../fonts/text-security-disc.woff') format('woff'),
        url('../fonts/text-security-disc.ttf') format('truetype'),
        url('../fonts/text-security-disc.svg#text-security') format('svg');
}

input.password {
    font-family: 'text-security-disc';
    width:100%;
    margin-bottom:5px
}

/* Utility stilovi */
#validateTips {
    width: 20em;
    position: absolute;
    top: 0px;
    right: 40px;
    z-index: 500;
}

#wait_loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Language Selector stilovi */
.language-selector {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1000;
}

.language-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 40px;
}

.language-dropdown:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.language-dropdown:focus {
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.language-dropdown option {
    padding: 10px;
    background: #fff;
    color: #333;
    font-size: 14px;
}

/* Responsive dizajn za mobilne uređaje */
@media (max-width: 600px) {
    .language-selector {
        top: 10px;
        right: 10px;
    }
    
    .language-dropdown {
        font-size: 12px;
        padding: 8px 15px;
        padding-right: 35px;
        border-radius: 20px;
    }
}


