/* ===== OVERLAY ===== */
#login-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30000;
}

/* ===== BOX ===== */
.entry-box {
    width: 360px;              /* ⬅ più piccolo */
    padding: 22px 26px;
    background: #fff;
    box-shadow: 0 10px 36px rgba(0,0,0,.25);
    font-family: 'Ubuntu Condensed', sans-serif;
    color: #555;
}

/* ===== TITLE ===== */
.entry-title {
    margin: 0 0 14px;
    font-size: 30px;           /* ⬅ più piccolo */
    letter-spacing: 1.5px;
    text-align: center;
    color: #444;
}

/* ===== INFO ===== */
.entry-info {
    font-size: 11px;           /* ⬅ più discreto */
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: center;
}

.entry-info p {
    margin: 0 0 8px;
}

/* ===== ROW PASSWORD + BUTTON ===== */
.entry-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

/* ===== PASSWORD ===== */
.entry-password {
    flex: 1;
    padding: 8px 10px;
    font-family: inherit;
    font-size: 14px;
    border: 1px solid #ccc;
}

/* ===== BUTTON ===== */
.entry-button {
    padding: 8px 14px;
    background: #b00000;
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
}

/* ===== ERROR ===== */
.entry-error {
    color: #b00000;
    font-size: 12px;
    margin-bottom: 6px;
}

/* ===== VERSION ===== */
.entry-version {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    color: #888;
}