body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Google Sans', 'Roboto', Arial, sans-serif;
    background-color: #fff;
}

.login-container {
    width: 448px;
    padding: 20px;
    text-align: center;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
    position: relative;
}

.logo img {
    margin-bottom: 20px;
}

h2 {
    color: #202124;
    font-size: 24px;
    margin: 10px 0;
}

.subtitle {
    font-size: 14px;
    color: #5f6368;
}

.input-group {
    margin-bottom: 20px;
}

input[type="text"], input[type="password"] {
    width: calc(100% - 20px);
    padding: 15px 10px;
    border-radius: 4px;
    border: 1px solid #d9d9d9;
    font-size: 16px;
}

.forgot {
    display: block;
    color: #1a0dab;
    font-weight: bold;
    margin-bottom: 20px;
    text-decoration: none;
}

.guest-info {
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 20px;
}

.form-footer {
    text-align: right;
}

button {
    background-color: #1a73e8;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background-color: #1367cc;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column; /* Promjena za vertikalno slaganje */
    align-items: center;
    justify-content: center;
    font-family: 'Google Sans', 'Roboto', Arial, sans-serif;
}

.login-container {
    width: 448px;
    padding: 20px;
    text-align: center;
    border: 1px solid #c0c0c0; /* Suptilnija siva boja */
    border-radius: 8px;
    background: #fff;
    margin-bottom: 16px; /* Dodajemo malo prostora između forme i menija */
}

/* Stilovi za inpute, dugmad i ostale elemente ostaju slični, s prilagodbama boja prema potrebi */

.forgot, .footer-menu a {
    color: #1a73e8; /* Pastelna plava za linkove */
    text-decoration: none;
}

.footer-menu {
    text-align: left; /* Tekst menija poravnan na lijevo */
    font-size: 12px;
    color: #70757a; /* Suptilna siva boja za tekst */
}

.form-footer {
    display: flex;
    justify-content: flex-end; /* Dugme poravnano desno */
    margin-top: 20px; /* Razmak između polja i dugmeta */
}

.footer-links, .guest-info {
    text-align: left; /* Poravnanje na lijevo za tekst ispod forme */
    color: #70757a; /* Primjenjujemo pastelne boje */
}

.guest-info, .forgot {
    margin: 8px 0; /* Dodajemo malo više prostora između elemenata */
}

/* Prilagodba za mobilne uređaje ostaje ista */


