/* Osnovni stil za cijelu stranicu */
body {
    margin: 0;
    padding: 0;
    background-color: #f2f2f7; /* svijetla Apple-style pozadina */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Glavni kontejner za login formu */
.login-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Logo iznad forme */
.logo {
    max-height: 80px;
    margin-bottom: 20px;
}

/* Naslov login */
h2 {
    margin-bottom: 30px;
    color: #040067;
    font-size: 24px;
}

/* Svi input elementi uključujući dugme */
input[type="text"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    box-sizing: border-box; /* važno: padding ne povećava širinu */
    padding: 14px;
    margin-bottom: 16px;
    border: none;
    border-radius: 12px;
    background-color: #eeeeee;
    font-size: 16px;
}

/* Stil samo za dugme */
input[type="submit"] {
    background-color: #040067;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hover efekat za dugme */
input[type="submit"]:hover {
    background-color: #030058;
}

/* Poruka greške */
.error {
    color: #d11a2a;
    margin-top: 15px;
    font-size: 14px;
}
