body {
    background-image: url(2323.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex; 
    flex-direction: column; 
    min-height: 100vh;
    margin: 1px;
    
}

header {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background-color: #000;
    
}

.header-top { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-box { 
    background-image: url(Snimka\ zaslona\ 2026-01-15\ 174109.png); 
    border-radius: 2px; 
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    width: 20px;
}

.naslov-box{
    color: white;
    text-align: center;
}

.oznaka, .oznaka-ftr { 
    color: #fff; 
    font-size: 12px; 
    opacity: 0.8; }

/*Navigacija , Flexbox postavke za gumb*/
.navigacija { 
    display: flex; 
    gap: 12px; 
    justify-content: space-between; 
    border-radius: 10px;
}

/*Stil za linkove*/
.nav-link { 
    background-color: #00ADB5; 
    color: #000; 
    text-decoration: none; 
    flex: 1; 
    text-align: center; 
    padding: 10px 5px; 
    font-size: 14px; 
    font-weight: 500;
    transition: background-color 0.3s;
    border-radius: 6px;
}


.nav-link:hover {
    background-color: #7ad5da;
}

/* Glavni prozirni kontejner */
.main-wrapper { 
    flex: 1; 
    background-size: cover; 
    background-position: center;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 30px;
    opacity: 50%;
}

.glass-container { 
    background: #00ADB5; 
    width: 100%; 
    max-width: 950px; 
    min-height: 450px;
    border-radius: 15px; 
    padding: 50px; 
    -opacity: 50%;
}

.glass-container h2 p{
     color: black;
     opacity: 100%;
}


/* Osnovna forma unutar glass containera */
form { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    margin-top: 25px; 
    max-width: 320px; 
}
input, button { 
    padding: 12px;
    border-radius: 4px; 
    border: 1px solid #ccc; 
    font-size: 1rem; 
    border-radius: 6px;
}
button { 
    background-color: #000000; 
    color: white; 
    border: none; 
    cursor: pointer; 
    font-weight: bold; 
    border-radius: 6px;
     
}

button:hover {
    background-color: #00575c;
    transition: background-color 0.3s;
}